plugify 1.0.0.0
Loading...
Searching...
No Matches
path.hpp
1#pragma once
2
3#include <string_view>
4
5namespace std::filesystem {
6#if _WIN32
7 using path_view = std::wstring_view;
8#else
9 using path_view = std::string_view;
10#endif
11}