r245861 - Fixing some copy-pasta comments; NFC.

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 24 11:50:01 PDT 2015


Author: aaronballman
Date: Mon Aug 24 13:50:01 2015
New Revision: 245861

URL: http://llvm.org/viewvc/llvm-project?rev=245861&view=rev
Log:
Fixing some copy-pasta comments; NFC.

Modified:
    cfe/trunk/include/clang/AST/Decl.h

Modified: cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Decl.h?rev=245861&r1=245860&r2=245861&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Mon Aug 24 13:50:01 2015
@@ -1847,7 +1847,7 @@ public:
   bool isConstexpr() const { return IsConstexpr; }
   void setConstexpr(bool IC) { IsConstexpr = IC; }
 
-  /// Whether this is a (C++11) constexpr function or constexpr constructor.
+  /// \brief Indicates the function uses __try.
   bool usesSEHTry() const { return UsesSEHTry; }
   void setUsesSEHTry(bool UST) { UsesSEHTry = UST; }
 




More information about the cfe-commits mailing list