From 7c4cd741950789a6657d189b726449c5155610a6 Mon Sep 17 00:00:00 2001 From: mccallum Date: Mon, 18 Mar 1996 13:56:13 +0000 Subject: [PATCH] Comment fix. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1169 72102866-910b-0410-8b05-ffd578937521 --- Source/NSGCString.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;