From: Ted Kremenek Date: Wed, 4 Nov 2009 04:03:43 +0000 (+0000) Subject: Add mising #ifdef guards. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf960cb0ff08fd766723a059e012daa596f5e918;p=clang Add mising #ifdef guards. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86002 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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