Update of /cvsroot/mockpp/mockpp/mockpp/constraint
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9065/mockpp/constraint
Modified Files:
IsSame.h
Log Message:
make IsSame compare by reference
Index: IsSame.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/constraint/IsSame.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- IsSame.h 6 Jan 2005 13:09:22 -0000 1.17
+++ IsSame.h 22 Sep 2005 18:34:19 -0000 1.18
@@ -90,7 +90,7 @@
private:
- const T ref;
+ const T &ref;
};
|