| summaryrefslogtreecommitdiff |
diff options
| -rw-r--r-- | CMakeLists.txt | 5 | ||||
| -rw-r--r-- | src/tool/sorted_list.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1021162..9791143 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8 FATAL_ERROR) +cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project("Zero of One") @@ -21,3 +21,6 @@ set_property(TARGET zero_of_one PROPERTY C_STANDARD 99) set_property(TARGET zero_of_one PROPERTY C_STANDARD_REQUIRED ON) #find_package(Threads) #target_link_libraries(cborg ${CMAKE_THREAD_LIBS_INIT}) + +## OPTION HANDLING ############################################################# +# TODO diff --git a/src/tool/sorted_list.c b/src/tool/sorted_list.c index 880a4b5..5252c9e 100644 --- a/src/tool/sorted_list.c +++ b/src/tool/sorted_list.c @@ -33,6 +33,7 @@ int ZoO_sorted_list_index_of for (;;) { /* FIXME: overflow-safe? */ + /* No: (and (> current_min (/ Max 2)) (> current_max (/ Max 2))) */ i = ((current_min + current_max) / 2); if (i == list_length) |


