aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/CommentParser.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-31 10:23:13 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-31 10:23:13 +0000
commitda5922f4864b5da254c6676af8833c42adaa6d86 (patch)
tree8295ae8d25504719860c835ff2e7207a13941fd6 /include/clang/AST/CommentParser.h
parent45796b10d11869e86c6b85e24df165410536b313 (diff)
Use LLVM_DELETED_FUNCTION instead of a comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/CommentParser.h')
-rw-r--r--include/clang/AST/CommentParser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/CommentParser.h b/include/clang/AST/CommentParser.h
index 039079931c..19e1d57fc3 100644
--- a/include/clang/AST/CommentParser.h
+++ b/include/clang/AST/CommentParser.h
@@ -28,8 +28,8 @@ class CommandTraits;
/// Doxygen comment parser.
class Parser {
- Parser(const Parser&); // DO NOT IMPLEMENT
- void operator=(const Parser&); // DO NOT IMPLEMENT
+ Parser(const Parser &) LLVM_DELETED_FUNCTION;
+ void operator=(const Parser &) LLVM_DELETED_FUNCTION;
friend class TextTokenRetokenizer;