ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/dynbuf.h
(Generate patch)

Comparing deliantra/server/include/dynbuf.h (file contents):
Revision 1.35 by root, Wed Nov 16 23:42:00 2016 UTC vs.
Revision 1.36 by root, Sun Jan 29 02:47:04 2017 UTC

84 int size () const { return _size + (ptr - last->data); } 84 int size () const { return _size + (ptr - last->data); }
85 bool empty () const { return !size (); } 85 bool empty () const { return !size (); }
86 86
87 void linearise (void *data); 87 void linearise (void *data);
88 char *linearise () // does not 0-terminate(!) 88 char *linearise () // does not 0-terminate(!)
89 { 89 {
90 return first->next ? _linearise () : first->data; 90 return first->next ? _linearise () : first->data;
91 } 91 }
92 92
93 int room () const { return end - ptr; } 93 int room () const { return end - ptr; }
94 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines