Sorry for the delay. I was on vacation.

Please address the comment and this should be fine to submit unless Richard has 
any comments.


================
Comment at: include/clang/Lex/MacroInfo.h:247
@@ -246,2 +246,3 @@
   bool tokens_empty() const { return ReplacementTokens.empty(); }
+  const ArrayRef<Token> tokens() const { return ReplacementTokens; }
 
----------------
ArrayRef is pretty const on its own (in the sense that it doesn't allow 
modification of the elements in the range), so an extra const before 
ArrayRef<...> is not needed here.

http://reviews.llvm.org/D9079

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/



_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to