arphaman added inline comments.
================
Comment at: include/clang/Tooling/ASTDiff/ASTDiffInternal.h:38
+ operator int() const { return Id; }
+ NodeId &operator++() { return ++this->Id, *this; }
+ NodeId &operator--() { return --this->Id, *this; }
----------------
NIT: You don't need `this` here or in `--` as well.
https://reviews.llvm.org/D34329
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits