From: Wolfgang Bangerth Date: Mon, 3 Jun 2013 18:15:12 +0000 (+0000) Subject: Fix location of a semicolon so that it doesn't trip up the compiler. X-Git-Tag: v8.0.0~320 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20c56db8848cc5c12c95f5841b8e6bb5594ac6c9;p=dealii.git 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 --- 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 )