================ Comment at: include/clang/ASTMatchers/Dynamic/Parser.h:65 @@ +64,3 @@ + processMatcherToken(llvm::StringRef MatcherName, + const llvm::ArrayRef<VariantValue> &Args, + const TokenInfo &Info) = 0; ---------------- ArrayRef is a value type that is conceptually const. So this (and others) should be 'ArrayRef<VariantValue> Args'.
http://llvm-reviews.chandlerc.com/D714 _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
