r362443 - Fix test failure from r362435

Erich Keane via cfe-commits cfe-commits at lists.llvm.org
Mon Jun 3 12:57:52 PDT 2019


Author: erichkeane
Date: Mon Jun  3 12:57:52 2019
New Revision: 362443

URL: http://llvm.org/viewvc/llvm-project?rev=362443&view=rev
Log:
Fix test failure from r362435

Apparently I forgot to do an open brace in a namespace, so we get an
error about an extra closing brace.

Modified:
    cfe/trunk/test/SemaCXX/nothrow-vs-exception-specs.cpp

Modified: cfe/trunk/test/SemaCXX/nothrow-vs-exception-specs.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/nothrow-vs-exception-specs.cpp?rev=362443&r1=362442&r2=362443&view=diff
==============================================================================
--- cfe/trunk/test/SemaCXX/nothrow-vs-exception-specs.cpp (original)
+++ cfe/trunk/test/SemaCXX/nothrow-vs-exception-specs.cpp Mon Jun  3 12:57:52 2019
@@ -89,7 +89,7 @@ public:
 };
 }
 
-namespace FuncPointerReferenceConverts
+namespace FuncPointerReferenceConverts {
 void FuncToBeRefed();
 
 #ifndef CPP17




More information about the cfe-commits mailing list