diff options
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/AST/StmtDumper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp index 18c278118f6..5f680ea5429 100644 --- a/clang/lib/AST/StmtDumper.cpp +++ b/clang/lib/AST/StmtDumper.cpp @@ -330,6 +330,9 @@ void StmtDumper::VisitCastExpr(CastExpr *Node) { case CastExpr::CK_BaseToDerivedMemberPointer: fprintf(F, "<BaseToDerivedMemberPointer>"); break; + case CastExpr::CK_UserDefinedConversion: + fprintf(F, "<UserDefinedConversion>"); + break; } } |