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 b981280 commit 015b092Copy full SHA for 015b092
2 files changed
ImGuiFileDialog.cpp
@@ -438,6 +438,7 @@ class FileSystemStd : public IGFD::IFileSystem {
438
return false; // this is not a directory!
439
}
440
bool IsFileExist(const std::string& vName) override {
441
+ namespace fs = std::filesystem;
442
return fs::is_regular_file(vName);
443
444
bool CreateDirectoryIfNotExist(const std::string& vName) override {
ImGuiFileDialog.h
@@ -1628,6 +1628,7 @@ class IGFD_API FileInfos {
1628
1629
class IFileSystem {
1630
public:
1631
+ virtual ~IFileSystem() = default;
1632
// say if a directory can be openened or for any reason locked
1633
virtual bool IsDirectoryCanBeOpened(const std::string& vName) = 0;
1634
// say if a directory exist
0 commit comments