]> granicus.if.org Git - clang/commitdiff
Fix test failure from r362435
authorErich Keane <erich.keane@intel.com>
Mon, 3 Jun 2019 19:57:52 +0000 (19:57 +0000)
committerErich Keane <erich.keane@intel.com>
Mon, 3 Jun 2019 19:57:52 +0000 (19:57 +0000)
Apparently I forgot to do an open brace in a namespace, so we get an
error about an extra closing brace.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@362443 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/nothrow-vs-exception-specs.cpp

index a065dad77246133c84ca70f2907a2a39ee723c72..6d2a7dd58bd60f508c92c6db00d1bc16510b0953 100644 (file)
@@ -89,7 +89,7 @@ public:
 };
 }
 
-namespace FuncPointerReferenceConverts
+namespace FuncPointerReferenceConverts {
 void FuncToBeRefed();
 
 #ifndef CPP17