Update of /cvsroot/mockpp/mockpp/mockpp/compat
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25071
Modified Files:
Formatter.h
Log Message:
supress compiler warning
Index: Formatter.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/compat/Formatter.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Formatter.h 11 Mar 2005 00:24:57 -0000 1.27
+++ Formatter.h 1 May 2005 14:22:16 -0000 1.28
@@ -279,6 +279,7 @@
+ MOCKPP_GET_STRING(typeid(o).name())
+ MOCKPP_PCHAR("&]");
formatter << s;
+ MOCKPP_UNUSED(o);
return formatter;
}
@@ -298,6 +299,7 @@
+ MOCKPP_GET_STRING(typeid(*po).name())
+ MOCKPP_PCHAR("*]");
formatter << s;
+ MOCKPP_UNUSED(o);
return formatter;
}
|