Andrey Semashev

Results 222 comments of Andrey Semashev

To my knowledge, the problem is not fixed. The discussion in the boost-maint list came to a possible solution involving: - Adding a new function instead of `to_posix_string`, that can...

One possible way to do this is, I think, to use `strftime` with %z or %Z to obtain zone information and then parse it back into Boost.DateTime's `posix_time_zone`. This doesn't...

Boost.Filesystem does support UTF-16 and UTF-32 through `wchar_t`. `charN_t` are the newer additions to C++ which are not supported yet.

I don't think there's a good way to test this. Replacing `fchmod` (a) requires relying on specific linker behavior, (b) may affect code other than `boost::filesystem::copy_file` and (c) relies on...

There is now `BOOST_NO_CXX17_AUTO_NONTYPE_TEMPLATE_PARAMS` in Boost.Config that indicates support for this feature. It includes older compilers.