summaryrefslogtreecommitdiff
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2012-10-09 17:51:56 +0000
committerDouglas Gregor <dgregor@apple.com>2012-10-09 17:51:56 +0000
commit62430fd1a1d901956dfbac7b0ab49e2e653d6fc5 (patch)
tree441fd7ca5a96070ff39c77b26f7bc073bfd2a50f /include/llvm/ADT
parent289c39965b1b799a22534d759fdf0a26302430d7 (diff)
downloadllvm-62430fd1a1d901956dfbac7b0ab49e2e653d6fc5.tar.gz
llvm-62430fd1a1d901956dfbac7b0ab49e2e653d6fc5.tar.bz2
llvm-62430fd1a1d901956dfbac7b0ab49e2e653d6fc5.tar.xz
Not everyone uses C++11, apparently
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/MapVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/MapVector.h b/include/llvm/ADT/MapVector.h
index ffe1cd3eef..3f7a596413 100644
--- a/include/llvm/ADT/MapVector.h
+++ b/include/llvm/ADT/MapVector.h
@@ -28,7 +28,7 @@ namespace llvm {
/// mapping is done with DenseMap from Keys to indexes in that vector.
template<typename KeyT, typename ValueT,
typename MapType = llvm::DenseMap<KeyT, unsigned>,
- typename VectorType = std::vector<std::pair<KeyT, ValueT> >>
+ typename VectorType = std::vector<std::pair<KeyT, ValueT> > >
class MapVector {
typedef typename VectorType::size_type SizeType;