aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/AST/Comment.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-05-05 00:41:58 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-05-05 00:41:58 +0000
commit44ebbd54361c88071b2740ded92a13ad7dc5275f (patch)
tree6270237a8c04f9b838239b65c4e2e3b4d0cda682 /clang/lib/AST/Comment.cpp
parent3238fb759563e64b3fc1f28bb3e184de3d7b07a1 (diff)
downloadllvm-44ebbd54361c88071b2740ded92a13ad7dc5275f.zip
llvm-44ebbd54361c88071b2740ded92a13ad7dc5275f.tar.gz
llvm-44ebbd54361c88071b2740ded92a13ad7dc5275f.tar.bz2
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None
Patch by Robert Wilhelm. llvm-svn: 181139
Diffstat (limited to 'clang/lib/AST/Comment.cpp')
-rw-r--r--clang/lib/AST/Comment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Comment.cpp b/clang/lib/AST/Comment.cpp
index db55c04..68c73fd 100644
--- a/clang/lib/AST/Comment.cpp
+++ b/clang/lib/AST/Comment.cpp
@@ -134,7 +134,7 @@ void DeclInfo::fill() {
IsObjCMethod = false;
IsInstanceMethod = false;
IsClassMethod = false;
- ParamVars = ArrayRef<const ParmVarDecl *>();
+ ParamVars = None;
TemplateParameters = NULL;
if (!CommentDecl) {