Differential Revision: https://reviews.llvm.org/D39257
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316523
91177308-0d34-0410-b5e6-
96231b3b80d8
#include <cassert>
#include <cstdint>
#include <iterator>
+#include <map>
#include <memory>
#include <string>
#include <system_error>
/// An instantiation set is a collection of functions that have the same source
/// code, ie, template functions specializations.
class FunctionInstantiationSetCollector {
- using MapT = DenseMap<LineColPair, std::vector<const FunctionRecord *>>;
+ using MapT = std::map<LineColPair, std::vector<const FunctionRecord *>>;
MapT InstantiatedFunctions;
public: