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:
parent
ed64d15060
commit
07855c48d1
@ -52,7 +52,7 @@ public:
|
|||||||
Close();
|
Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 Read(const u32 count, Entry* entries) override;
|
u32 Read(u32 count, Entry* entries) override;
|
||||||
|
|
||||||
bool Close() const override {
|
bool Close() const override {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user