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.
diff --git a/cmake/EigenUninstall.cmake b/cmake/EigenUninstall.cmake
index 4dae8c8..5e63c98 100644
--- a/cmake/EigenUninstall.cmake
+++ b/cmake/EigenUninstall.cmake
@@ -27,7 +27,7 @@
else()
message(STATUS "File '${file}' does not exist.")
endif()
- endforeach(file)
+ endforeach()
message(STATUS "========== Finished Uninstalling Eigen ==============")
else()