[PATCH] D54407: Record the matcher type when storing a binding

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 12 15:33:47 PST 2018


aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.

Aside from a minor formatting nit, LGTM.



================
Comment at: include/clang/ASTMatchers/ASTMatchersInternal.h:154
+    bool operator<(const NodeEntry &Other) const {
+      return std::tie(DynNode, NodeKind) < std::tie(Other.DynNode, Other.NodeKind);
+    }
----------------
80 col.


Repository:
  rC Clang

https://reviews.llvm.org/D54407





More information about the cfe-commits mailing list