[fnd] Changed IFile so that a deleted IFile will trigger any layered destructors.

This commit is contained in:
jakcron 2018-05-11 21:47:23 +08:00
parent 8e360332e5
commit 8904b6e46c

View file

@ -6,7 +6,7 @@ namespace fnd
class IFile
{
public:
virtual ~IFile() = 0;
inline virtual ~IFile() {}
virtual size_t size() = 0;
virtual void seek(size_t offset) = 0;