diff options
author | Nicolas BERNSTEIN <katchup@nicolas-bernsteins-acpi.local> | 2009-10-26 14:42:00 +0100 |
---|---|---|
committer | Nicolas BERNSTEIN <katchup@nicolas-bernsteins-acpi.local> | 2009-10-26 14:42:00 +0100 |
commit | d68a064819deaaa8e01eca3c7809050b25cedfbd (patch) | |
tree | 2d4692602b7ad7e1071b9b0a83a11d44181bafa0 /Source/Kernel/VFS | |
parent | d1ac6fb03e3110e35023f60f643f0c4d02c3d8b6 (diff) | |
download | Melon-d68a064819deaaa8e01eca3c7809050b25cedfbd.tar.gz Melon-d68a064819deaaa8e01eca3c7809050b25cedfbd.zip |
Made some minor changes, for compatibility
Diffstat (limited to 'Source/Kernel/VFS')
-rw-r--r-- | Source/Kernel/VFS/FileSystem.proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Kernel/VFS/FileSystem.proto.h b/Source/Kernel/VFS/FileSystem.proto.h index 5aec434..a614c13 100644 --- a/Source/Kernel/VFS/FileSystem.proto.h +++ b/Source/Kernel/VFS/FileSystem.proto.h @@ -9,6 +9,7 @@ class DirectoryNode; //This abstract class describes a filesystem class FileSystem { protected: + virtual ~FileSystem() {} bool m_isWritable; //false = read only DirectoryNode* m_rootNode; |