Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions cmake/CheckSizes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ elseif(SHORT_SIZE EQUAL 2)
elseif(INT_SIZE EQUAL 2)
set(SIZE16 "int")
else()
message(STATUS "No 16 bit type found on this platform!")
set(SIZE16 "int16_t")
endif()

Expand All @@ -32,7 +31,6 @@ elseif(INT_SIZE EQUAL 2)
elseif(U_INT_SIZE EQUAL 2)
set(USIZE16 "u_int16_t")
else()
message(STATUS "No unsigned 16 bit type found on this platform!")
set(USIZE16 "uint16_t")
endif()

Expand All @@ -45,7 +43,6 @@ elseif(INT_SIZE EQUAL 4)
elseif(LONG_SIZE EQUAL 4)
set(SIZE16 "long")
else()
message(STATUS "No 32 bit type found on this platform!")
set(SIZE32 "int32_t")
endif()

Expand All @@ -60,7 +57,6 @@ elseif(LONG_SIZE EQUAL 4)
elseif(U_INT_SIZE EQUAL 4)
set(USIZE32 "u_int32_t")
else()
message(STATUS "No unsigned 32 bit type found on this platform!")
set(USIZE32 "uint32_t")
endif()

Expand All @@ -73,6 +69,5 @@ elseif(LONG_SIZE EQUAL 8)
elseif(LONG_LONG_SIZE EQUAL 8)
set(SIZE64 "long long")
else()
message(STATUS "No 64 bit type found on this platform!")
set(SIZE64 "int64_t")
endif()