diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-11-21 12:31:29 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-11-21 14:24:57 +0300 |
commit | 7298e0fbb01ddcc89ce3d66984aca444840744a8 (patch) | |
tree | e050e9af757135e57ce4d94f809dcd5cd1f7337a | |
parent | 670991989ad45fafaa5616d3111cc041722a143e (diff) | |
download | ydb-7298e0fbb01ddcc89ce3d66984aca444840744a8.tar.gz |
Make std::filesystem::path support universal
This will probably break util compilation with MSVC, but I am not aware of anyone using it.
-rw-r--r-- | util/stream/output.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/util/stream/output.cpp b/util/stream/output.cpp index a0ef0346de..719c877764 100644 --- a/util/stream/output.cpp +++ b/util/stream/output.cpp @@ -115,13 +115,10 @@ void Out<std::u32string_view>(IOutputStream& o, const std::u32string_view& p) { WriteString(o, p.data(), p.length()); } -#ifndef USE_STL_SYSTEM -// FIXME thegeorg@: remove #ifndef upon raising minimal macOS version to 10.15 in https://st.yandex-team.ru/DTCC-836 template <> void Out<std::filesystem::path>(IOutputStream& o, const std::filesystem::path& p) { o.Write(p.string()); } -#endif template <> void Out<TStringBuf>(IOutputStream& o, const TStringBuf& p) { |