diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:35 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2013-09-06 16:21:35 -0500 |
commit | 90bfbd9793e64b29d09f4ca4ee610ee08f82ea75 (patch) | |
tree | e14b49f9632b25cde8a32b5e5787a36a376e6dff /src/base | |
parent | e9ae8b7d29e83fa2cad55006d2c6dc58115965cc (diff) | |
download | gem5-90bfbd9793e64b29d09f4ca4ee610ee08f82ea75.tar.xz |
ruby: network: convert to gem5 style stats
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/statistics.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/base/statistics.hh b/src/base/statistics.hh index f3b6ae39f..dd3cf5e9c 100644 --- a/src/base/statistics.hh +++ b/src/base/statistics.hh @@ -331,6 +331,12 @@ class DataWrapVec : public DataWrap<Derived, InfoProxyType> public: typedef InfoProxyType<Derived> Info; + DataWrapVec() + {} + + DataWrapVec(const DataWrapVec &ref) + {} + // The following functions are specific to vectors. If you use them // in a non vector context, you will get a nice compiler error! |