diff --git a/Source/NSGCString.m b/Source/NSGCString.m index 5f892757d..aab7752fb 100644 --- a/Source/NSGCString.m +++ b/Source/NSGCString.m @@ -28,6 +28,7 @@ #include #include #include +#include /* memcpy(), strlen(), strcmp() are gcc builtin's */ @implementation NSGCString @@ -37,7 +38,7 @@ length: (unsigned int)length freeWhenDone: (BOOL)flag { - /* assert(!flag); /* xxx need to make a subclass to handle this. */ + /* assert(!flag); xxx need to make a subclass to handle this. */ _count = length; _contents_chars = byteString; _free_contents = flag;