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/snippets/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/snippets') diff --git a/doc/snippets/CMakeLists.txt b/doc/snippets/CMakeLists.txt index 88ed3419f..65f195a31 100644 --- a/doc/snippets/CMakeLists.txt +++ b/doc/snippets/CMakeLists.txt @@ -33,4 +33,4 @@ foreach(snippet_src ${snippets_SRCS}) else() message("skip snippet ${snippet_src} because compiler does not support C++11") endif() -endforeach(snippet_src) +endforeach() -- cgit v1.2.3