File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ class IntervalMap {
55
55
};
56
56
57
57
using MapIter = typename std::map<uint64_t , Value>::iterator;
58
- using ConstMapIter = typename std::map<uint64_t , Value>::const_iterator;
58
+ using ConstMapIter =
59
+ typename std::map<uint64_t , Value>::const_iterator;
60
+ using MapImpl = std::map<uint64_t , Value>;
59
61
60
62
// Returns an iterator pointing to the interval containing the given key, or
61
63
// end() if one was not found.
@@ -101,7 +103,7 @@ class IntervalMap {
101
103
102
104
// Map from the start of the interval to the limit of the interval and the
103
105
// corresponding value.
104
- std::map< uint64_t , Value> interval_start_;
106
+ MapImpl interval_start_;
105
107
};
106
108
107
109
template <class V >
Original file line number Diff line number Diff line change @@ -296,7 +296,8 @@ class PerfParser {
296
296
std::unordered_map<std::string, DSOInfo> name_to_dso_;
297
297
298
298
// Maps process ID to an address mapper for that process.
299
- std::unordered_map<uint32_t , std::unique_ptr<AddressMapper>> process_mappers_;
299
+ std::unordered_map<uint32_t , std::unique_ptr<AddressMapper>>
300
+ process_mappers_;
300
301
};
301
302
302
303
} // namespace quipper
You can’t perform that action at this time.
0 commit comments