Skip to content

Commit a50da3a

Browse files
committed
Small comment change
1 parent b3f2c4a commit a50da3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ set_target_properties(openjph PROPERTIES POSITION_INDEPENDENT_CODE ON)
139139
target_compile_definitions(openjph PUBLIC _FILE_OFFSET_BITS=64)
140140
target_include_directories(openjph PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/common> $<INSTALL_INTERFACE:include>)
141141

142-
## Check to see if aligned_alloc or posix_memalign is available
143-
# We want to the code to compile for C11 and C++11.
142+
## This is to check if aligned_alloc or posix_memalign is available
143+
# We want the code to compile for C11 and C++11.
144144
# std::aligned_alloc is only availabe in C++17.
145-
# So here we try to see what API is available and adapt the code to support it
145+
# So here we try to see which API is available and adapt the code to use it
146146
if (NOT MSVC)
147147
include(CheckSymbolExists)
148148
check_symbol_exists(aligned_alloc "stdlib.h" OJPH_ALIGNED_ALLOC_EXISTS)

0 commit comments

Comments
 (0)