From 8e10d404dbe9bcd7f73070b53788fe6341912be4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 27 Mar 2018 07:39:03 -1000 Subject: [PATCH] Fix compile tests --- test/compile-test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/compile-test/CMakeLists.txt b/test/compile-test/CMakeLists.txt index cebcee01..ede0c3ce 100644 --- a/test/compile-test/CMakeLists.txt +++ b/test/compile-test/CMakeLists.txt @@ -48,10 +48,10 @@ endfunction () expect_compile("") # Formatting a wide character with a narrow format string is forbidden. -expect_compile_error("fmt::format(\"{}\", L'a';") +expect_compile_error("fmt::format(\"{}\", L'a');") # Formatting a wide string with a narrow format string is forbidden. -expect_compile_error("fmt::format(\"{}\", L\"foo\";") +expect_compile_error("fmt::format(\"{}\", L\"foo\");") # Make sure that compiler features detected in the header # match the features detected in CMake.