Update of /cvsroot/mockpp/mockpp/mockpp/builder
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11523/mockpp/builder
Modified Files:
StubBuilder.h
Log Message:
work on support for weak compilers
Index: StubBuilder.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/builder/StubBuilder.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- StubBuilder.h 30 Jan 2005 12:09:17 -0000 1.23
+++ StubBuilder.h 25 Mar 2005 16:30:28 -0000 1.24
@@ -56,14 +56,14 @@
{
public:
-#ifdef MOCKPP_PTI_WEAKNESS // Partial Template Instatiation Weakness
+#ifdef MOCKPP_PTI_WEAKNESS // Partial Template Instantiation Weakness
/** Indicates that the method is \c void.
* @return the builder object
*/
IdentityBuilder& isVoid()
{
- // setStub( new VoidStub());
+ setStub( new VoidStub());
return *this;
}
@@ -87,7 +87,7 @@
};
-#ifndef MOCKPP_PTI_WEAKNESS // Partial Template Instatiation Weakness
+#ifndef MOCKPP_PTI_WEAKNESS // Partial Template Instantiation Weakness
/** Partial specialisation for builder class for void stub related purposes.
|