disk_archive: Remove unnecessary const in DiskDirectory's Read() declaration

This only applies in the definition of the function, not the
declaration.
This commit is contained in:
Lioncash 2018-03-28 19:41:29 -04:00
parent ed64d15060
commit 07855c48d1

View file

@ -52,7 +52,7 @@ public:
Close();
}
u32 Read(const u32 count, Entry* entries) override;
u32 Read(u32 count, Entry* entries) override;
bool Close() const override {
return true;