From: Chris Lattner Date: Fri, 4 Jan 2008 16:27:03 +0000 (+0000) Subject: fix a build problem where NULL isn't implicitly defined by the headers this file... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d9b9e4f61e790d71e134cb84ec21230fb41341f;p=clang fix a build problem where NULL isn't implicitly defined by the headers this file includes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45587 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Analysis/ProgramEdge.h b/include/clang/Analysis/ProgramEdge.h index 0962d71461..fb81c701f3 100644 --- a/include/clang/Analysis/ProgramEdge.h +++ b/include/clang/Analysis/ProgramEdge.h @@ -114,7 +114,7 @@ namespace llvm { // Traits specialization for DenseMap template <> struct DenseMapInfo { static inline clang::ProgramEdge getEmptyKey() { - return clang::BlkBlkEdge(NULL,NULL); + return clang::BlkBlkEdge(0, 0); } static inline clang::ProgramEdge getTombstoneKey() {