From b739ec893f4473da4e08af564a9290a201cf150f Mon Sep 17 00:00:00 2001 From: Magnus Bjerke Vik Date: Tue, 17 Mar 2015 10:15:54 +0100 Subject: [PATCH] Fix CMake FMT_INITIALIZER_LIST check failing because of wrong include name. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 989d1a53..15c7dac1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,7 +104,7 @@ check_cxx_source_compiles(" # Check if initializer lists are supported. check_cxx_source_compiles(" - #include + #include int main() {}" FMT_INITIALIZER_LIST) if (NOT FMT_VARIADIC_TEMPLATES OR NOT FMT_INITIALIZER_LIST)