commit | e1f49d545dbbf02c77dc297551101eab58cb2485 | [log] [tgz] |
---|---|---|
author | Kaelyn Takata <rikka@google.com> | Mon Oct 27 18:07:20 2014 +0000 |
committer | Kaelyn Takata <rikka@google.com> | Mon Oct 27 18:07:20 2014 +0000 |
tree | 9d59839d39a5b53efcfc291b08dac0d0bbfa9d53 | |
parent | d2287c394281b66fabdb2ba9ff8444e9546e79ee [diff] [blame] |
Add the initial TypoExpr AST node for delayed typo correction. llvm-svn: 220692
diff --git a/clang/lib/AST/StmtProfile.cpp b/clang/lib/AST/StmtProfile.cpp index 87e30bb..15a8676 100644 --- a/clang/lib/AST/StmtProfile.cpp +++ b/clang/lib/AST/StmtProfile.cpp
@@ -1242,6 +1242,10 @@ VisitExpr(E); } +void StmtProfiler::VisitTypoExpr(const TypoExpr *E) { + VisitExpr(E); +} + void StmtProfiler::VisitObjCStringLiteral(const ObjCStringLiteral *S) { VisitExpr(S); }