diff options
-rw-r--r-- | lib/AST/StmtDumper.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/AST/StmtDumper.cpp b/lib/AST/StmtDumper.cpp index 18c278118f..5f680ea542 100644 --- a/lib/AST/StmtDumper.cpp +++ b/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; } } |