From 6fb3e5f1767855bc1a8aa3c868bc7fbf0eeb67ef Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Thu, 31 Oct 2019 11:36:27 -0500 Subject: STYLE: Remove CMake-language block-end command arguments Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. --- doc/special_examples/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/special_examples') diff --git a/doc/special_examples/CMakeLists.txt b/doc/special_examples/CMakeLists.txt index 66ba4deee..5b00e8b1a 100644 --- a/doc/special_examples/CMakeLists.txt +++ b/doc/special_examples/CMakeLists.txt @@ -3,7 +3,7 @@ if(NOT EIGEN_TEST_NOQT) if(QT4_FOUND) include(${QT_USE_FILE}) endif() -endif(NOT EIGEN_TEST_NOQT) +endif() if(QT4_FOUND) add_executable(Tutorial_sparse_example Tutorial_sparse_example.cpp Tutorial_sparse_example_details.cpp) @@ -17,7 +17,7 @@ if(QT4_FOUND) ) add_dependencies(all_examples Tutorial_sparse_example) -endif(QT4_FOUND) +endif() if(EIGEN_COMPILER_SUPPORT_CPP11) add_executable(random_cpp11 random_cpp11.cpp) -- cgit v1.2.3