X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fio%2Fmemory.h;h=c24d3f78e6ec3c123b7f99736fb858533f66de94;hb=41363aed34382386f915f17c1a961750b4fdcb14;hp=048656793d47c33a56de5b1142bb5edbb3c2e4ba;hpb=122846f0881673770d88eff7d925ecf25c01b62e;p=libs%2Fcore.git diff --git a/source/io/memory.h b/source/io/memory.h index 0486567..c24d3f7 100644 --- a/source/io/memory.h +++ b/source/io/memory.h @@ -9,9 +9,9 @@ namespace IO { class Memory: public Seekable { private: - char *begin = 0; - char *end = 0; - char *pos = 0; + char *begin = nullptr; + char *end = nullptr; + char *pos = nullptr; public: Memory(char *d, std::size_t s, Mode m = M_RDWR): Memory(d, d+s, m) { }