[llvm-commits] [llvm] r165517 - /llvm/trunk/include/llvm/ADT/MapVector.h
Douglas Gregor
dgregor at apple.com
Tue Oct 9 10:51:56 PDT 2012
Author: dgregor
Date: Tue Oct 9 12:51:56 2012
New Revision: 165517
URL: http://llvm.org/viewvc/llvm-project?rev=165517&view=rev
Log:
Not everyone uses C++11, apparently
Modified:
llvm/trunk/include/llvm/ADT/MapVector.h
Modified: llvm/trunk/include/llvm/ADT/MapVector.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/MapVector.h?rev=165517&r1=165516&r2=165517&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/MapVector.h (original)
+++ llvm/trunk/include/llvm/ADT/MapVector.h Tue Oct 9 12:51:56 2012
@@ -28,7 +28,7 @@
/// 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;
More information about the llvm-commits
mailing list