diff options
Diffstat (limited to 'src/systemc/ext')
-rw-r--r-- | src/systemc/ext/core/sc_time.hh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/systemc/ext/core/sc_time.hh b/src/systemc/ext/core/sc_time.hh index 362834cce..014755522 100644 --- a/src/systemc/ext/core/sc_time.hh +++ b/src/systemc/ext/core/sc_time.hh @@ -84,6 +84,9 @@ class sc_time static sc_time from_value(sc_dt::uint64); static sc_time from_seconds(double); static sc_time from_string(const char *str); + + private: + uint64_t val; }; const sc_time operator + (const sc_time &, const sc_time &); |