aboutsummaryrefslogtreecommitdiff
path: root/include/Support/STLExtras.h
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-23 03:50:31 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-23 03:50:31 +0000
commit9bb2188b0e196d2724e128152ef4d4b581adf3bc (patch)
tree8600d675f11340a9dbc3b220510a2e822b905580 /include/Support/STLExtras.h
parent6de98f242a6e7103de3f880c31f7e6b4e3650da8 (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
Diffstat (limited to 'include/Support/STLExtras.h')
-rw-r--r--include/Support/STLExtras.h2
1 files changed, 1 insertions, 1 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 {