-
### Is your feature request related to a problem?
More powerful formatting for log messages
### Describe the solution you'd like.
If using C++11/14/17: https://github.com/fmtlib/fmt
For C++20 it i…
ljden updated
4 months ago
-
The compiler generates warnings about unreachable code in fmtlib and ``
-
Getting these errors since upgrading to fmtlib v11.0.2.
```
In file included from /proj/main.hpp:6,
from /proj/main.cpp:3:
/proj/mp-units/src/core/include/mp-units/format.h: In …
-
Just an idea.
[It's](https://github.com/emilk/loguru) a header-only C++ logging library with support fmtlib formatting.
-
When launching a build, the dependencies must be cloned into third_party subdirectory. Apparently, that does not occur in 1.3.1. The issue does not exist in 1.2.1
-
The compiler is failing to find an appropriate overload for the `fmt::join` function that works with `std::vector` or other
`std::vector`.
Environment:
1. MSVC 17.0
2. CMake 3.30.2
3. ninja 1.…
-
- refactor logging to a design based on the [logging module](https://docs.python.org/3/library/logging.html) of python
- use [fmtlib](http://fmtlib.net/latest/index.html) for formatting the message
…
-
The current logging framework uses streams. They're all around terrible, hard to read and slow. Replace with fmtlib.
turol updated
2 years ago
-
https://cppcoach.godbolt.org/z/Mocb7znYf
Only only does it not allow to stream into std::ostream / std::stringstream but also makes it "not play nice with {fmt}".
see https://github.com/fmtlib/fmt…
-
Simple fix is the wrap the word min and max in () such as:
static CONSTCD11 year (min)() NOEXCEPT { return year{-32767}; }
static CONSTCD11 year (max)() NOEXCEPT { return year{32767}; }
…