aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/data.hh
diff options
context:
space:
mode:
authorschnetter <>2003-08-28 19:27:00 +0000
committerschnetter <>2003-08-28 19:27:00 +0000
commit1d5dd114414190e0fb48f508b289dead7853e5b7 (patch)
tree076b63c3c1c0c1723dcff653c2be74d1b858f59c /Carpet/CarpetLib/src/data.hh
parent410682bb03e679e5c61a124b20fb369e5a88d471 (diff)
Track the C++ standard.
Track the C++ standard. Derived template classes do not have their template parent classes in scope; one has to explicitly use "this->" to access parent class elements. darcs-hash:20030828192703-07bb3-09c0c6267bffab1dee6bc3a4cfd4b156b51e39b0.gz
Diffstat (limited to 'Carpet/CarpetLib/src/data.hh')
-rw-r--r--Carpet/CarpetLib/src/data.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Carpet/CarpetLib/src/data.hh b/Carpet/CarpetLib/src/data.hh
index 84ac8309d..e395ebe06 100644
--- a/Carpet/CarpetLib/src/data.hh
+++ b/Carpet/CarpetLib/src/data.hh
@@ -1,4 +1,4 @@
-// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/data.hh,v 1.12 2003/01/03 15:49:36 schnetter Exp $
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/data.hh,v 1.13 2003/08/28 21:27:03 schnetter Exp $
#ifndef DATA_HH
#define DATA_HH
@@ -54,12 +54,12 @@ public:
// Accessors
virtual const void* storage () const {
- assert (_has_storage);
+ assert (this->_has_storage);
return _storage;
}
virtual void* storage () {
- assert (_has_storage);
+ assert (this->_has_storage);
return _storage;
}