From cd3e8d1be484ab635f64c9d386b6b9a9c01ae797 Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 3 Jun 2013 18:15:12 +0000 Subject: [PATCH] Fix location of a semicolon so that it doesn't trip up the compiler. git-svn-id: https://svn.dealii.org/trunk@29742 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/checks/check_03_compiler_bugs.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/cmake/checks/check_03_compiler_bugs.cmake b/deal.II/cmake/checks/check_03_compiler_bugs.cmake index b33e40b11c..3978679979 100644 --- a/deal.II/cmake/checks/check_03_compiler_bugs.cmake +++ b/deal.II/cmake/checks/check_03_compiler_bugs.cmake @@ -256,7 +256,7 @@ CHECK_CXX_SOURCE_COMPILES( explicit X(T) {} }; void f(X) {} - int main() { f(1) }; + int main() { f(1); } " DEAL_II_EXPLICIT_CONSTRUCTOR_BUG ) -- 2.39.5