Author: aaronballman
Date: Thu Jan 26 16:39:01 2017
New Revision: 293218

URL: http://llvm.org/viewvc/llvm-project?rev=293218&view=rev
Log:
Correcting a typo in the test case to appease bots.

Modified:
    clang-tools-extra/trunk/test/clang-tidy/modernize-use-noexcept.cpp

Modified: clang-tools-extra/trunk/test/clang-tidy/modernize-use-noexcept.cpp
URL: 
http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/modernize-use-noexcept.cpp?rev=293218&r1=293217&r2=293218&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/modernize-use-noexcept.cpp 
(original)
+++ clang-tools-extra/trunk/test/clang-tidy/modernize-use-noexcept.cpp Thu Jan 
26 16:39:01 2017
@@ -11,7 +11,7 @@ void foo() throw();
 template <typename T>
 void foo() throw();
 void footest() { foo<int>(); foo<double>(); }
-// CHECK-MESSAGES: :[[@LINE-2]:12: warning: dynamic exception specification 
'throw()' is deprecated; consider using 'noexcept' instead 
[modernize-use-noexcept]
+// CHECK-MESSAGES: :[[@LINE-2]]:12: warning: dynamic exception specification 
'throw()' is deprecated; consider using 'noexcept' instead 
[modernize-use-noexcept]
 // CHECK-FIXES: void foo() noexcept;
 
 void bar() throw(...);


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to