mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 21:16:56 +00:00
Update changelog
This commit is contained in:
parent
6a775e9560
commit
69c24e47e8
@ -56,6 +56,26 @@
|
|||||||
Note that ``fmt/std.h`` provides a ``formatter`` specialization for
|
Note that ``fmt/std.h`` provides a ``formatter`` specialization for
|
||||||
``std::thread::id`` so you don't need to format it via ``std::ostream``.
|
``std::thread::id`` so you don't need to format it via ``std::ostream``.
|
||||||
|
|
||||||
|
* Added experimental ``std::variant`` formatting support
|
||||||
|
(`#2941 <https://github.com/fmtlib/fmt/pull/2941>`_).
|
||||||
|
For example (`godbolt <https://godbolt.org/z/KG9z6cq68>`__):
|
||||||
|
|
||||||
|
.. code:: c++
|
||||||
|
|
||||||
|
#include <variant>
|
||||||
|
#include <fmt/std.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
auto v = std::variant<int, std::string>(42);
|
||||||
|
fmt::print("{}\n", v);
|
||||||
|
}
|
||||||
|
|
||||||
|
prints::
|
||||||
|
|
||||||
|
variant(42)
|
||||||
|
|
||||||
|
Thanks `@jehelset <https://github.com/jehelset>`_.
|
||||||
|
|
||||||
* Added experimental ``std::filesystem::path`` formatting support
|
* Added experimental ``std::filesystem::path`` formatting support
|
||||||
(`#2865 <https://github.com/fmtlib/fmt/issues/2865>`_,
|
(`#2865 <https://github.com/fmtlib/fmt/issues/2865>`_,
|
||||||
`#2902 <https://github.com/fmtlib/fmt/pull/2902>`_,
|
`#2902 <https://github.com/fmtlib/fmt/pull/2902>`_,
|
||||||
|
Loading…
Reference in New Issue
Block a user