X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Foutput.cpp;fp=source%2Foutput.cpp;h=46d270ad7263ae5d88e656918bfe02b7528e09e8;hp=f4673378b69e95a7ff55baabf001606e3726a3dc;hb=8a4fca97e2bf3a3934399123e8f7cbd591912f83;hpb=83971ed7f55794a61e1d249c59867184a6eb97ba diff --git a/source/output.cpp b/source/output.cpp index f467337..46d270a 100644 --- a/source/output.cpp +++ b/source/output.cpp @@ -21,12 +21,12 @@ void Output::set_compressed() out = compressed; } -unsigned Output::put(char c) +size_t Output::put(char c) { return out->put(c); } -unsigned Output::write(const string &s) +size_t Output::write(const string &s) { return out->write(s); }