X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Finput.h;fp=source%2Finput.h;h=6cc53e7af3674ee31fbd18bbff24e3d699830294;hp=61633458f53af02e411294822cc1d60dc2dd9d9c;hb=e14c01b5775dd2e324b16ff49498db9b9113c523;hpb=a2cce9e933089f483163456e9872e005c33dd678 diff --git a/source/input.h b/source/input.h index 6163345..6cc53e7 100644 --- a/source/input.h +++ b/source/input.h @@ -10,10 +10,10 @@ namespace DataFile { class Input: private NonCopyable { private: - IO::Base *in; - IO::Base *compressed; - unsigned line; - int next; + IO::Base *in = nullptr; + IO::Base *compressed = nullptr; + unsigned line = 1; + int next = -1; public: Input(IO::Base &);