mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 16:40:12 +02:00
Deprecate 'vluint64_t' and similar types (#3255).
This commit is contained in:
@@ -32,13 +32,13 @@ struct GraphPCNode {
|
||||
//
|
||||
// Unlike the LogicMTasks's, we have no cost info for the generic graph
|
||||
// accepted by GraphPathChecker, so assume each node has unit cost.
|
||||
std::array<vluint32_t, GraphWay::NUM_WAYS> m_cp;
|
||||
std::array<uint32_t, GraphWay::NUM_WAYS> m_cp;
|
||||
|
||||
// Detect if we've seen this node before in a given recursive
|
||||
// operation. We'll use this in pathExistsInternal() to avoid checking
|
||||
// the same node twice, and again in updateHalfCriticalPath() to assert
|
||||
// there are no cycles.
|
||||
vluint64_t m_seenAtGeneration = 0;
|
||||
uint64_t m_seenAtGeneration = 0;
|
||||
|
||||
// CONSTRUCTORS
|
||||
GraphPCNode() {
|
||||
|
||||
Reference in New Issue
Block a user