format
format copied to clipboard
Boost.org format module
In [this page](https://www.boost.org/doc/libs/1_72_0/libs/format/example/sample_new_features.cpp) the output is broken because the source code file uses ISO-8859-1 but is assumed to be UTF-8 when copying to the web page. Github [guesses the correct...
i.e. %07d will result in padding to 7 digits with zeros and %+d will show unpadded digits with plus sign if positive, but %+07d only shows the plus sign (if...
This is part of the effort to make the Boost libraries "modular" for build and consumption. See https://lists.boost.org/Archives/boost/2024/01/255704.php and https://github.com/grafikrobot/boost-b2-modular/blob/b2-modular/README.adoc for more information. This PR depends on the following other...
`C++11` is now a minimal required C++ version for `boost::format`. This means that old `gcc` version (older then `gcc 4.x`) support is no longer required. This PR removes unused workaround...
See https://github.com/codecov/codecov-action?tab=readme-ov-file#usage
Could you add the format string caused the issue to the `boost::too_many_args` exception text? I've got the following error message in the log file and cannot find where does it...
sprintf is deprecated on macos clang. "Use snprintf if available as some compilers (clang 14.0) issue deprecation warnings for sprintf" sprintf appears in these files: ``` libs/format/benchmark/bench_format.cpp:// bench_variants.cc : do...
All used operations are trivial or already noexcept so set the annotation. This is recommended for swap implementations