Give ImmutableIntervalMap.h an include guard.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130094 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sebastian Redl 2011-04-24 15:46:46 +00:00
parent 61717b3d94
commit f462ab431f

View File

@ -10,6 +10,10 @@
// 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"
namespace llvm {
@ -240,3 +244,5 @@ private:
};
} // end namespace llvm
#endif