Skip to content

Commit

Permalink
Add 'const'
Browse files Browse the repository at this point in the history
  • Loading branch information
fpetrini15 committed Nov 6, 2024
1 parent 3eebca5 commit 3ac6f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem/implementations/local.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class LocalFileSystem : public FileSystem {

private:
inline std::string GetOSValidPath(const std::string& path);
static constexpr char* kWindowsLongPathPrefix = "\\\\?\\";
static constexpr const char* kWindowsLongPathPrefix = "\\\\?\\";
};

//! Converts incoming utf-8 path to an OS valid path
Expand Down

0 comments on commit 3ac6f84

Please sign in to comment.