From 20c56db8848cc5c12c95f5841b8e6bb5594ac6c9 Mon Sep 17 00:00:00 2001 From: Wolfgang 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