From 09e288e55bf70cccb05e82757d592f91b856553e Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 29 Oct 2015 08:24:31 -0700 Subject: [PATCH] Update ChangeLog.rst --- ChangeLog.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ChangeLog.rst b/ChangeLog.rst index 13371da4..66ab99e7 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -166,6 +166,18 @@ `Red Hat Bugzilla Bug 1260297 `_). Thanks to `@jackyf (Eugene V. Lyubimkin) `_ and Dave Johansen. +* [Experimental] User-defined literals for format and named arguments + (`#204 `_, + `#206 `_, + `#207 `_): + + .. code:: c++ + + using namespace fmt::literals; + fmt::print("The answer is {answer}.", "answer"_a=42); + + Thanks to `@dean0x7d (Dean Moldovan) `_. + * Added an option to disable use of IOStreams when ``FMT_USE_IOSTREAMS`` is defined as 0 before including ``format.h`` (`#205 `_, @@ -183,6 +195,10 @@ ``crtdbg.h`` when ``_CRTDBG_MAP_ALLOC`` is set (`#211 `_). +* Fixed shared library build on OS X + (`#212 `_). + Thanks to `@dean0x7d (Dean Moldovan) `_. + * Fixed an overload conflict on MSVC when ``/Zc:wchar_t-`` option is specified (`#214 `_). Thanks to `@slavanap (Vyacheslav Napadovsky) `_.