From: Aaron Ballman Date: Mon, 24 Aug 2015 18:50:01 +0000 (+0000) Subject: Fixing some copy-pasta comments; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95da9031c479aae9670d50c57674807b44b8c85e;p=clang Fixing some copy-pasta comments; NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245861 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index 0810d76e25..50d8aaed17 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -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; }