diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2010-03-25 13:19:42 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2010-03-25 13:19:42 +0000 |
commit | d9ab76bbce7b8a563aa847cfcdcd39d8280f11bd (patch) | |
tree | d989f67314b6a0f305841a32abecc448c632ffda | |
parent | 93ba8579c341d5329175f1413cdc3b35a36592d2 (diff) |
add dump() method to CanQual for debugging purposes
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99505 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/CanonicalType.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/AST/CanonicalType.h b/include/clang/AST/CanonicalType.h index 1f459b08ca..f4cccf3511 100644 --- a/include/clang/AST/CanonicalType.h +++ b/include/clang/AST/CanonicalType.h @@ -165,6 +165,8 @@ public: // (dynamic) type. static CanQual<T> CreateUnsafe(QualType Other); + void dump() const { Stored.dump(); } + void Profile(llvm::FoldingSetNodeID &ID) const { ID.AddPointer(getAsOpaquePtr()); } |