Explorar el Código

Fixed compilartion error

Benoit Blanchon hace 11 años
padre
commit
7b8aba46cc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/QuotedString_PrintTo_Tests.cpp

+ 1 - 1
test/QuotedString_PrintTo_Tests.cpp

@@ -15,7 +15,7 @@ class QuotedString_PrintTo_Tests : public testing::Test {
  protected:
   void whenInputIs(const char *input) {
     StringBuilder sb(buffer, sizeof(buffer));
-    returnValue = QuotedString::printTo(input, &sb);
+    returnValue = QuotedString::printTo(input, sb);
   }
 
   void outputMustBe(const char *expected) {