diff options
| author | Martin Ridgers <[email protected]> | 2021-09-16 16:37:15 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-16 16:37:15 +0200 |
| commit | 97cfa86c2775fdfd7ddfc5d88b6283ccee5d6bbf (patch) | |
| tree | a3063a0ed450bb33ff7d445479532f60caf9b86c /zen/cmds/run.cpp | |
| parent | Non-Windows implementation of Clean/DeleteDirectory() using std::fs (diff) | |
| download | archived-zen-97cfa86c2775fdfd7ddfc5d88b6283ccee5d6bbf.tar.xz archived-zen-97cfa86c2775fdfd7ddfc5d88b6283ccee5d6bbf.zip | |
Use std::fd::path's character type for FileSysTraveral::Visitor API
Diffstat (limited to 'zen/cmds/run.cpp')
| -rw-r--r-- | zen/cmds/run.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/cmds/run.cpp b/zen/cmds/run.cpp index e5210f695..97680ed5a 100644 --- a/zen/cmds/run.cpp +++ b/zen/cmds/run.cpp @@ -80,7 +80,7 @@ RunCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) Visitor(const std::filesystem::path& RootPath) : m_RootPath(RootPath) {} - virtual void VisitFile(const std::filesystem::path& Parent, const std::wstring_view& FileName, uint64_t FileSize) override + virtual void VisitFile(const std::filesystem::path& Parent, const path_view& FileName, uint64_t FileSize) override { std::filesystem::path FullPath = Parent / FileName; |