formatstring icon indicating copy to clipboard operation
formatstring copied to clipboard

A C++14 type safe format string library heavily inspired by Python's str.format() function.

Results 1 formatstring issues
Sort by recently updated
recently updated
newest added

This line attempts to use the non-conforming extension `std::ios::hexfloat`. https://github.com/panzi/formatstring/blob/8c7cb73cd69e29c3289924de7bb51e28cd032f79/src/formatvalue.cpp#L563 We should use the standard manner, i.e., replacing it with `std::ios::fixed | std::ios::scientific`. See also [cppreference](https://en.cppreference.com/w/cpp/io/manip/fixed). Also, conditional compilation shouldn't...