Give ImmutableIntervalMap.h an include guard.

llvm-svn: 130094
This commit is contained in:
Sebastian Redl 2011-04-24 15:46:46 +00:00
parent f7adb3204e
commit 76e34f0175
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,10 @@
// This file defines the ImmutableIntervalMap class. // This file defines the ImmutableIntervalMap class.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLVM_ADT_IMMUTABLE_INTERVAL_MAP_H
#define LLVM_ADT_IMMUTABLE_INTERVAL_MAP_H
#include "llvm/ADT/ImmutableMap.h" #include "llvm/ADT/ImmutableMap.h"
namespace llvm { namespace llvm {
@ -240,3 +244,5 @@ private:
}; };
} // end namespace llvm } // end namespace llvm
#endif