add std::filesystem::path logger

This commit is contained in:
2025-09-30 21:59:38 +03:00
parent fc247a5b83
commit c716126382
4 changed files with 8 additions and 9 deletions

View File

@@ -120,6 +120,11 @@ namespace hack
{
std::cout << data << (m_count != 0 ? m_devider : "");
}
void print_t(const std::filesystem::path& path)
{
std::cout << path.string() << (m_count != 0 ? m_devider : "");
}
// для bool
template<concepts::is_bool T>