diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-11-23 03:50:31 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-11-23 03:50:31 +0000 |
commit | 9bb2188b0e196d2724e128152ef4d4b581adf3bc (patch) | |
tree | 8600d675f11340a9dbc3b220510a2e822b905580 | |
parent | 6de98f242a6e7103de3f880c31f7e6b4e3650da8 (diff) |
A better way to get std::pair into the compiler's little, walnut-sized brain.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10174 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/Support/STLExtras.h | 2 | ||||
-rw-r--r-- | include/llvm/ADT/STLExtras.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Support/STLExtras.h b/include/Support/STLExtras.h index de4ad1ce92..5ebceb346a 100644 --- a/include/Support/STLExtras.h +++ b/include/Support/STLExtras.h @@ -18,7 +18,7 @@ #define SUPPORT_STLEXTRAS_H #include <functional> -#include <map> // G++-3.0.x will find std::pair here. +#include <utility> // for std::pair #include "Support/iterator" namespace llvm { diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index de4ad1ce92..5ebceb346a 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -18,7 +18,7 @@ #define SUPPORT_STLEXTRAS_H #include <functional> -#include <map> // G++-3.0.x will find std::pair here. +#include <utility> // for std::pair #include "Support/iterator" namespace llvm { |