Fix verilator_coverage not sorting output
This commit is contained in:
parent
6cd2bd2972
commit
64f11251b6
|
|
@ -100,10 +100,10 @@ public:
|
||||||
class VlcPoints {
|
class VlcPoints {
|
||||||
private:
|
private:
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
typedef vl_unordered_map<string,vluint64_t> NameMap;
|
typedef std::map<string,vluint64_t> NameMap; // Sorted by name (ordered)
|
||||||
NameMap m_nameMap; //< Name to point-number
|
NameMap m_nameMap; //< Name to point-number
|
||||||
std::vector<VlcPoint> m_points; //< List of all points
|
std::vector<VlcPoint> m_points; //< List of all points
|
||||||
vluint64_t m_numPoints; //< Total unique points
|
vluint64_t m_numPoints; //< Total unique points
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// ITERATORS
|
// ITERATORS
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue