diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-28 19:34:30 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-28 19:34:30 +0000 |
commit | 2d2ee236cf696437cb2189bf4fc913ede115b70d (patch) | |
tree | e8b8cad388631209113ebd9ee8ea5e74d47c909f | |
parent | 9b706bcd98825cca5f232aeab564f9c1da28ddb7 (diff) | |
download | bcm5719-llvm-2d2ee236cf696437cb2189bf4fc913ede115b70d.tar.gz bcm5719-llvm-2d2ee236cf696437cb2189bf4fc913ede115b70d.zip |
Add missing break statement.
llvm-svn: 77356
-rw-r--r-- | clang/include/clang/Analysis/PathSensitive/CheckerVisitor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang/Analysis/PathSensitive/CheckerVisitor.h b/clang/include/clang/Analysis/PathSensitive/CheckerVisitor.h index 72fd5f3dabb..35afe73f4da 100644 --- a/clang/include/clang/Analysis/PathSensitive/CheckerVisitor.h +++ b/clang/include/clang/Analysis/PathSensitive/CheckerVisitor.h @@ -38,7 +38,8 @@ public: return; #define PREVISIT(NAME) \ case Stmt::NAME ## Class:\ -static_cast<ImplClass*>(this)->PreVisit ## NAME(C, static_cast<const NAME*>(S)); +static_cast<ImplClass*>(this)->PreVisit ## NAME(C,static_cast<const NAME*>(S));\ +break; #include "clang/Analysis/PathSensitive/CheckerVisitor.def" } } |