diff options
author | Nathan Binkert <binkertn@umich.edu> | 2004-12-13 12:55:13 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2004-12-13 12:55:13 -0500 |
commit | d0bff50bbabf63de382f202dba956cd7b9b47de7 (patch) | |
tree | d6e962cc598c137c283723849058be27298a89b6 /base/random.cc | |
parent | f3e89d3991bed9c2ad33e29d1f61a11860db1f52 (diff) | |
download | gem5-d0bff50bbabf63de382f202dba956cd7b9b47de7.tar.xz |
Fix up the random number stuff.
SConscript:
compile the random number generator stuff into m5
base/random.cc:
we need to define our destructor
base/random.hh:
Since there's no state, just makes all of these get functions static
--HG--
extra : convert_revision : 9d4b8abd57367391a8ecda3914b1d912d9c64185
Diffstat (limited to 'base/random.cc')
-rw-r--r-- | base/random.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/random.cc b/base/random.cc index f18ed546d..9a4562e8a 100644 --- a/base/random.cc +++ b/base/random.cc @@ -39,7 +39,7 @@ class RandomContext : public ParamContext public: RandomContext(const string &_iniSection) : ::ParamContext(_iniSection) {} - ~RandomContext(); + ~RandomContext() {} void checkParams(); }; |