Clarify I/O error handling

This commit is contained in:
Victor Zverovich 2023-09-16 08:20:27 -07:00
parent bfdf50d183
commit aa3c5a4127

View File

@ -49,6 +49,10 @@ checked at compile time in C++20. To pass a runtime format string wrap it in
*args* is an argument list representing objects to be formatted.
I/O errors are reported as `std::system_error
<https://en.cppreference.com/w/cpp/error/system_error>`_ exceptions unless
specified otherwise.
.. _format:
.. doxygenfunction:: format(format_string<T...> fmt, T&&... args) -> std::string