2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-01-19 04:22:12 +00:00

Fix documentation of enable_if_path_t

This commit is contained in:
Alexander Grund
2024-11-22 13:16:12 +01:00
committed by GitHub
parent 015be201a5
commit fd38460b41

View File

@@ -27,7 +27,7 @@ namespace nowide {
static constexpr bool value = decltype(test<T>(0))::value;
};
/// SFINAE trait which has a member "type = Result" if the Path is a *\::filesystem::path
/// SFINAE trait/alias which resolves to Result if the Path is a *\::filesystem::path
template<typename Path, typename Result>
using enable_if_path_t = typename std::enable_if<is_path<Path>::value, Result>::type;