[cfe-commits] r86002 - /cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h
Ted Kremenek
kremenek at apple.com
Tue Nov 3 20:03:43 PST 2009
Author: kremenek
Date: Tue Nov 3 22:03:43 2009
New Revision: 86002
URL: http://llvm.org/viewvc/llvm-project?rev=86002&view=rev
Log:
Add mising #ifdef guards.
Modified:
cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h
Modified: cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h?rev=86002&r1=86001&r2=86002&view=diff
==============================================================================
--- cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h (original)
+++ cfe/trunk/include/clang/Analysis/PathSensitive/Checkers/UndefinedArgChecker.h Tue Nov 3 22:03:43 2009
@@ -12,6 +12,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_CLANG_UNDEFARGCHECKER
+#define LLVM_CLANG_UNDEFARGCHECKER
+
#include "clang/Analysis/PathSensitive/CheckerVisitor.h"
namespace clang {
@@ -28,3 +31,4 @@
};
}
+#endif
More information about the cfe-commits
mailing list