Skip to content

Commit

Permalink
Fix -m32 compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wsnyder committed Sep 19, 2023
1 parent 24ff315 commit 470f480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/verilated_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class VlURNG final {
size_t operator()() { return VL_MASK_I(31) & vl_rand64(); }
};

template <class T_Value, std::size_t T_numValues>
template <class T_Value, uint64_t T_numValues>
class VlRandC final {
T_Value m_remaining = 0; // Number of values to pull before re-randomize
T_Value m_lfsr = 1; // LFSR state
Expand Down

0 comments on commit 470f480

Please sign in to comment.