[Mockpp-commits] mockpp/mockpp/constraint ConstraintHolder.h,1.7,1.8
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-03-25 18:43:45
|
Update of /cvsroot/mockpp/mockpp/mockpp/constraint In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12755/mockpp/constraint Modified Files: ConstraintHolder.h Log Message: typo Index: ConstraintHolder.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/ConstraintHolder.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ConstraintHolder.h 29 Jan 2005 13:56:23 -0000 1.7 +++ ConstraintHolder.h 25 Mar 2005 18:43:33 -0000 1.8 @@ -84,7 +84,7 @@ * @return the costraint object */ #if defined(__BORLANDC__) && (__BORLANDC__ >= 560) - operator typename AutoPointer<Constraint<T> > () const // we we actually lie a bit + operator typename AutoPointer<Constraint<T> > () const // we actually lie a bit #else operator typename Constraint<T>::AP () const #endif @@ -94,7 +94,7 @@ private: - mutable typename Constraint<T>::AP constraint; // we we actually lie a bit + mutable typename Constraint<T>::AP constraint; // we actually lie a bit }; |