[llvm-commits] [llvm] r61619 -	/llvm/trunk/include/llvm/Support/PredIteratorCache.h
    Chris Lattner 
    sabre at nondot.org
       
    Sat Jan  3 17:28:00 PST 2009
    
    
  
Author: lattner
Date: Sat Jan  3 19:28:00 2009
New Revision: 61619
URL: http://llvm.org/viewvc/llvm-project?rev=61619&view=rev
Log:
add #include guards, thanks Dan.
Modified:
    llvm/trunk/include/llvm/Support/PredIteratorCache.h
Modified: llvm/trunk/include/llvm/Support/PredIteratorCache.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/PredIteratorCache.h?rev=61619&r1=61618&r2=61619&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/PredIteratorCache.h (original)
+++ llvm/trunk/include/llvm/Support/PredIteratorCache.h Sat Jan  3 19:28:00 2009
@@ -16,6 +16,9 @@
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/SmallVector.h"
 
+#ifndef LLVM_SUPPORT_PREDITERATORCACHE_H
+#define LLVM_SUPPORT_PREDITERATORCACHE_H
+
 namespace llvm {
 
   /// PredIteratorCache - This class is an extremely trivial cache for
@@ -55,3 +58,5 @@
   };
 } // end namespace llvm
 
+#endif
+
    
    
More information about the llvm-commits
mailing list