changeset cc5797147e1c in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=cc5797147e1c
description:
        stats: add operator= for DataWrapVec class

        gcc/g++ 4.4.7 complained about the operator= being undefined.
        This changeset adds the operator.

diffstat:

 src/base/statistics.hh |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (13 lines):

diff -r 1ee14c8f6555 -r cc5797147e1c src/base/statistics.hh
--- a/src/base/statistics.hh    Fri Sep 06 16:21:36 2013 -0500
+++ b/src/base/statistics.hh    Mon Sep 09 18:52:23 2013 -0500
@@ -337,6 +337,9 @@
     DataWrapVec(const DataWrapVec &ref)
     {}
 
+    void operator=(const DataWrapVec &)
+    {}
+
     // The following functions are specific to vectors.  If you use them
     // in a non vector context, you will get a nice compiler error!
 
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to