forked from OSchip/llvm-project
Convert SmallMapVector from a class to a struct.
llvm-svn: 225158
This commit is contained in:
parent
dc2fc8035d
commit
9e674942e8
|
@ -185,11 +185,9 @@ void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) {
|
||||||
/// \brief A MapVector that performs no allocations if smaller than a certain
|
/// \brief A MapVector that performs no allocations if smaller than a certain
|
||||||
/// size.
|
/// size.
|
||||||
template <typename KeyT, typename ValueT, unsigned N>
|
template <typename KeyT, typename ValueT, unsigned N>
|
||||||
class SmallMapVector
|
struct SmallMapVector
|
||||||
: public MapVector<KeyT, ValueT, SmallDenseMap<KeyT, unsigned, N>,
|
: MapVector<KeyT, ValueT, SmallDenseMap<KeyT, unsigned, N>,
|
||||||
SmallVector<std::pair<KeyT, ValueT>, N>> {
|
SmallVector<std::pair<KeyT, ValueT>, N>> {
|
||||||
public:
|
|
||||||
SmallMapVector() {}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
Loading…
Reference in New Issue