Skip to content

Commit

Permalink
revert stupid changes in filesystems.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ctapmex committed Sep 11, 2024
1 parent 6254ffb commit 52b6846
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/colorer/platform/filesystem.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -595,12 +595,12 @@ class GHC_FS_API_CLASS path
void handle_prefixes();
friend bool detail::has_executable_extension(const path& p);
#ifdef GHC_WIN_AUTO_PREFIX_LONG_PATH
string_type::size_type _prefixLength%;
string_type::size_type _prefixLength{0};
#else // GHC_WIN_AUTO_PREFIX_LONG_PATH
static const string_type::size_type _prefixLength%;
static const string_type::size_type _prefixLength{0};
#endif // GHC_WIN_AUTO_PREFIX_LONG_PATH
#else
static const string_type::size_type _prefixLength%;
static const string_type::size_type _prefixLength{0};
#endif
};

Expand Down

0 comments on commit 52b6846

Please sign in to comment.