diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-03-26 07:11:54 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2021-03-26 07:11:54 (GMT) |
commit | f12f22e568febe0f403fb9018103f266f3cacd38 (patch) | |
tree | 88bec27c1f3187aa4153f4033fcb9658e5ffe352 /src/dir.cpp | |
parent | ff2b8d933b3adf499ddaea07b53a8db000611ab6 (diff) | |
download | Doxygen-f12f22e568febe0f403fb9018103f266f3cacd38.zip Doxygen-f12f22e568febe0f403fb9018103f266f3cacd38.tar.gz Doxygen-f12f22e568febe0f403fb9018103f266f3cacd38.tar.bz2 |
Fix compilation issue on Windows
Diffstat (limited to 'src/dir.cpp')
-rw-r--r-- | src/dir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dir.cpp b/src/dir.cpp index df1665f..327bc72 100644 --- a/src/dir.cpp +++ b/src/dir.cpp @@ -196,7 +196,7 @@ bool Dir::exists(const std::string &path,bool acceptsAbsPath) const bool Dir::exists() const { - FileInfo fi(p->path); + FileInfo fi(p->path.string()); return fi.exists() && fi.isDir(); } |