Skip to content

Commit

Permalink
phobos 1.003
Browse files Browse the repository at this point in the history
  • Loading branch information
braddr committed Sep 10, 2007
1 parent becee64 commit db00024
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions std/outbuffer.d
Expand Up @@ -19,6 +19,7 @@ module std.outbuffer;
private
{
import std.string;
import std.gc;
import std.c.stdio;
import std.c.stdlib;
import std.c.stdarg;
Expand Down Expand Up @@ -79,6 +80,7 @@ class OutBuffer
if (data.length < offset + nbytes)
{
data.length = (offset + nbytes) * 2;
std.gc.hasPointers(data.ptr);
}
}

Expand Down

0 comments on commit db00024

Please sign in to comment.