We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fdf5ae commit 5005c5bCopy full SHA for 5005c5b
.gitignore
@@ -30,3 +30,5 @@
30
/build
31
/examples/build
32
.vscode/settings.json
33
+
34
+/out/**
include/vfspp/ZipFileSystem.hpp
@@ -144,7 +144,13 @@ class ZipFileSystem final : public IFileSystem
144
{
145
return false;
146
}
147
-
+ /*
148
+ * Close file
149
+ */
150
+ virtual void CloseFile(IFilePtr file) override
151
+ {
152
+ //NO-OP
153
+ }
154
/*
155
* Check if file exists on filesystem
156
*/
0 commit comments