From a840130e9c7b2f528c703af2608b5130a8b4ac00 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 11 May 1999 00:14:47 +0000 Subject: [PATCH] fixed missing arg --- src/gdd/gddContainerI.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/gdd/gddContainerI.h b/src/gdd/gddContainerI.h index 44c06c2a9..b3d7a046b 100644 --- a/src/gdd/gddContainerI.h +++ b/src/gdd/gddContainerI.h @@ -7,6 +7,9 @@ * * $Id$ * $Log$ + * Revision 1.3 1999/05/10 23:42:25 jhill + * fixed many const releated problems + * * Revision 1.2 1999/04/30 15:24:53 jhill * fixed improper container index bug * @@ -84,11 +87,11 @@ inline gdd* gddCursor::next(gddContainer*& dd) inline gdd* gddCursor::current(void) const { return (gdd*)constGddCursor::current(); } inline gdd* gddCursor::current(gddScalar*& dd) const - { return (gdd*)constGddCursor::current(); } + { return (gdd*)constGddCursor::current((const gddScalar*&)dd); } inline gdd* gddCursor::current(gddAtomic*& dd) const - { return (gdd*)constGddCursor::current(); } + { return (gdd*)constGddCursor::current((const gddAtomic*&)dd); } inline gdd* gddCursor::current(gddContainer*& dd) const - { return (gdd*)constGddCursor::current(); } + { return (gdd*)constGddCursor::current((const gddContainer*&)dd); } inline gdd* gddCursor::operator[](int index) { return (gdd *) constGddCursor::operator [](index); }