[clang-tools-extra] r293218 - Correcting a typo in the test case to appease bots.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 26 14:39:01 PST 2017


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(...);




More information about the cfe-commits mailing list