diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-11-04 04:03:43 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-11-04 04:03:43 +0000 |
commit | bf960cb0ff08fd766723a059e012daa596f5e918 (patch) | |
tree | 6ac59e7324b97e0e2fff13ec30d91ab624919e02 | |
parent | 9112b93829da90b1612453bea4c491a1678272a4 (diff) |
Add mising #ifdef guards.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86002 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h b/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h index ebb7f37f55..7f4e7d524f 100644 --- a/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h +++ b/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h @@ -12,6 +12,9 @@ // //===----------------------------------------------------------------------===// +#ifndef LLVM_CLANG_UNDEFARGCHECKER +#define LLVM_CLANG_UNDEFARGCHECKER + #include "clang/Analysis/PathSensitive/CheckerVisitor.h" namespace clang { @@ -28,3 +31,4 @@ public: }; } +#endif |