Skip to content

Commit

Permalink
Removed erroneous commas from test/CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesSommer committed Nov 3, 2017
1 parent bffa0f1 commit 243a708
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ macro(try_compile_cloud_types MAT_TYPE TREE_TYPE EXPECT)
endif ()
endmacro(try_compile_cloud_types)

try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE, NABO_TYPE_CREATE, TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE, NABO_TYPE_BRUTE_FORCE, TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE, NABO_TYPE_LINEAR_HEAP, TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE, NABO_TYPE_TREE_HEAP, TRUE)

try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE, NABO_TYPE_CREATE, FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE, NABO_TYPE_BRUTE_FORCE, FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE, NABO_TYPE_LINEAR_HEAP, FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE, NABO_TYPE_TREE_HEAP, FALSE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE NABO_TYPE_CREATE TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE NABO_TYPE_BRUTE_FORCE TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE NABO_TYPE_LINEAR_HEAP TRUE)
try_compile_cloud_types(NABO_EIGEN_DYNAMIC_TYPE NABO_TYPE_TREE_HEAP TRUE)

try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE NABO_TYPE_CREATE FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE NABO_TYPE_BRUTE_FORCE FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE NABO_TYPE_LINEAR_HEAP FALSE)
try_compile_cloud_types(NABO_EIGEN_SEMI_DYNAMIC_TYPE NABO_TYPE_TREE_HEAP FALSE)

0 comments on commit 243a708

Please sign in to comment.