summaryrefslogtreecommitdiff
path: root/include/llvm/Pass.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-03-21 23:51:57 +0000
committerDan Gohman <gohman@apple.com>2008-03-21 23:51:57 +0000
commitc9235d2e855c56e9aa157969f8132a05f9ba89d8 (patch)
treeae8300c5c9de2e3629531133f66da6cf9c06d504 /include/llvm/Pass.h
parent32f3b19a069336de8ce15ab03ccf8b30ea2e8fce (diff)
downloadllvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.tar.gz
llvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.tar.bz2
llvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.tar.xz
Don't include <map> in Pass.h, which doesn't need it. This requires
adding <map> to many files that actually do need it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Pass.h')
-rw-r--r--include/llvm/Pass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h
index a0ffcde4da..06a86f1858 100644
--- a/include/llvm/Pass.h
+++ b/include/llvm/Pass.h
@@ -32,7 +32,7 @@
#include "llvm/Support/DataTypes.h"
#include "llvm/Support/Streams.h"
#include <vector>
-#include <map>
+#include <utility>
#include <iosfwd>
#include <cassert>