Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Dragonbox #1882

Merged
merged 11 commits into from
Sep 19, 2020
Merged

Implement Dragonbox #1882

merged 11 commits into from
Sep 19, 2020

Conversation

jk-jeon
Copy link
Contributor

@jk-jeon jk-jeon commented Sep 18, 2020

From #1426 (comment).

(Sorry for the repetition, I realized a bug so have closed the previous one and now I'm opening this.)

All tests in the repo (except for os-test and format-test, which I believe are not related to this PR) passed, but there might be bugs. I'm not sure which branch I should choose for this kind of large PR, so I just have chose the master branch.

Performance is as measured as before.
(clang-cl)
milo1
milo2

(msvc)
milo1_msvc
milo2_msvc

Currently, I didn't touch write function, but I think it would be wiser to do that for the following reasons. First, as now format_float follows completely different paths for the shortest formatting and the fixed-precision formatting, I think there is little reason to unify them into one function. Second, it seems that currently the template argument T for format_float is always chosen to be double, but this introduces a needless branch inside format_float. Hence, I think it would be wiser to thus make separate functions for three different cases: the shortest formatting for float, the shortest formatting for double (and possibly long double when it is no different from double), and the fixed formatting.

I agree that my contributions are licensed under the {fmt} license, and agree to future changes to the licensing.

@vitaut vitaut merged commit 3b6248f into fmtlib:master Sep 19, 2020
@vitaut
Copy link
Contributor

vitaut commented Sep 19, 2020

This is great, thanks!

@vitaut
Copy link
Contributor

vitaut commented Sep 19, 2020

On my system (macOS + clang) the results look even better:

image

@vitaut
Copy link
Contributor

vitaut commented Sep 19, 2020

I think it would be wiser to thus make separate functions for three different cases: the shortest formatting for float, the shortest formatting for double (and possibly long double when it is no different from double), and the fixed formatting.

I totally agree, the current implementation is more of a historical artefact and should be split.

@vitaut
Copy link
Contributor

vitaut commented Sep 22, 2020

Fuzzer caught one issue on formatting 1.35631564E-19f with dragonbox:

fmt::print("{}", 1.35631564E-19f);

triggers an assertion failure in

FMT_ASSERT(n <= small_division_by_pow10_info<N>::divisor, "n is too large");

Stack trace:

  * frame #0: 0x00007fff6767033a libsystem_kernel.dylib`__pthread_kill + 10
    frame #1: 0x00007fff6772ce60 libsystem_pthread.dylib`pthread_kill + 430
    frame #2: 0x00007fff675f7808 libsystem_c.dylib`abort + 120
    frame #3: 0x00007fff64856458 libc++abi.dylib`abort_message + 231
    frame #4: 0x00007fff648477e9 libc++abi.dylib`demangling_terminate_handler() + 48
    frame #5: 0x00007fff64855887 libc++abi.dylib`std::__terminate(void (*)()) + 8
    frame #6: 0x00007fff64855838 libc++abi.dylib`std::terminate() + 56
    frame #7: 0x0000000100004242 a.out`fmt::v7::detail::assert_fail(file="include/fmt/format-inl.h", line=2003, message="n is too large") at format-inl.h:57:3
    frame #8: 0x0000000100029502 a.out`unsigned int fmt::v7::detail::dragonbox::small_division_by_pow10<1>(n=69) at format-inl.h:2003:3
    frame #9: 0x00000001000095fc a.out`fmt::v7::detail::dragonbox::decimal_fp<float> fmt::v7::detail::dragonbox::to_decimal<float>(x=1.35631564E-19) at format-inl.h:2528:9
    frame #10: 0x0000000100008283 a.out`int fmt::v7::detail::format_float<double>(value=1.3563156426940112E-19, precision=-1, specs=float_specs @ 0x00007ffeefbfef80, buf=0x00007ffeefbff120) at format-inl.h:2683:11
    frame #11: 0x00000001000164ad a.out`fmt::v7::detail::buffer_appender<char> fmt::v7::detail::write<char, fmt::v7::detail::buffer_appender<char>, float, 0>(out=buffer_appender<char> @ 0x00007ffeefbff110, value=1.35631564E-19) at format.h:1851:13
    frame #12: 0x0000000100014d7a a.out`fmt::v7::detail::buffer_appender<char> fmt::v7::detail::default_arg_formatter<fmt::v7::detail::buffer_appender<char>, char>::operator(this=0x00007ffeefbff400, value=1.35631564E-19)<float>(float) at format.h:1989:12
    frame #13: 0x0000000100006cee a.out`fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char>::iterator fmt::v7::vformat_to<fmt::v7::detail::arg_formatter<fmt::v7::detail::buffer_appender<char>, char>, char, fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> >(fmt::v7::detail::arg_formatter<fmt::v7::detail::buffer_appender<char>, char>::iterator, fmt::v7::basic_string_view<char>, fmt::v7::basic_format_args<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> >, fmt::v7::detail::locale_ref) [inlined] decltype(vis=0x00007ffeefbff400, arg=0x00007ffeefbff550)) fmt::v7::visit_format_arg<fmt::v7::detail::default_arg_formatter<fmt::v7::detail::buffer_appender<char>, char>, fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> >(fmt::v7::detail::default_arg_formatter<fmt::v7::detail::buffer_appender<char>, char>&&, fmt::v7::basic_format_arg<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> > const&) at core.h:1329:12
    frame #14: 0x0000000100006b48 a.out`fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char>::iterator fmt::v7::vformat_to<fmt::v7::detail::arg_formatter<fmt::v7::detail::buffer_appender<char>, char>, char, fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> >(out=fmt::v7::detail::arg_formatter<fmt::v7::detail::buffer_appender<char>, char>::iterator @ 0x00007ffeefbff450, format_str=(data_ = "{}", size_ = 2), args=basic_format_args<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> > @ 0x00007ffeefbff430, loc=(locale_ = 0x0000000000000000)) at format.h:3461
    frame #15: 0x000000010000625f a.out`fmt::v7::detail::buffer_appender<char> fmt::v7::detail::vformat_to<char>(buf=0x00007ffeefbff690, format_str=(data_ = "{}", size_ = 2), args=basic_format_args<fmt::v7::basic_format_context<fmt::v7::detail::buffer_appender<char>, char> > @ 0x00007ffeefbff5c8) at format.h:3641:10
    frame #16: 0x000000010000633f a.out`fmt::v7::vprint(f=0x00007fff8dc74e28, format_str=(data_ = "{}", size_ = 2), args=format_args @ 0x00007ffeefbff670) at format-inl.h:3045:3
    frame #17: 0x0000000100006537 a.out`fmt::v7::vprint(format_str=(data_ = "{}", size_ = 2), args=format_args @ 0x00007ffeefbff8e0) at format-inl.h:3075:3
    frame #18: 0x0000000100003f60 a.out`void fmt::v7::print<char [3], float, char>(format_str=<no value available>, args=0x00007ffeefbff9ac) [3], float&&) at core.h:2121:16
    frame #19: 0x0000000100003eb5 a.out`main at test.cc:21:3
    frame #20: 0x00007fff67528cc9 libdyld.dylib`start + 1

vitaut pushed a commit that referenced this pull request Sep 22, 2020
MusicScience37 added a commit to MusicScience37/mpRPC that referenced this pull request Nov 7, 2020
cc09f1a67 Update version
e4eb242ce Update changelog and bump version
ce98e0c6a Fix fallback float formatter at assymetric bounds (#1976)
5f7f7b954 Update version
5d3f0741e Update changelog and bump version
563cbb6c2 Add a macro to workaround clang/gcc ABI incompatibility on ARM
425778aa6 Fix ABI compatibility (#1961)
69a84198b Remove accidental parenthesis (#1968)
5c0450493 Removed [-Wsign-conversion] warning in GCC
556a1cfb3 Instantiate to_decimal to make gcc lto happy (#1955)
28a8eae85 Cleanup
236fea1f0 Workaround bugs in gcc 8
4fe0b1119 Update version
df4bd60f4 Bump version
764fb35e1 Always install the required version of breathe
e1bdc0eca Use the correct version of sphinx
39bde329b Tweak markup
204d299ab Tweak markup
e0995b1c1 Update readme
4af178bdf Remove outdated build config
aa41dc02b Remove unused script
6a77ea3c9 Tweak markup
62c72059d Update changelog
c10e3f7f4 Update changelog
e542e6953 Update changelog
530cf316b Point to the release, not dev documentation
740385d63 Update changelog
cd4651116 Update changelog
46291be34 Update changelog
90071c1df Update ChangeLog.rst
25293d7ac Update ChangeLog.rst
5024742f8 Update ChangeLog.rst
0452a4e71 Update changelog
8de96817c Woraround bugs in gcc 8
47e167679 Simplify arg formatter
f0a42346a Move parsing optimization one level up
86287b8d5 Optimize common case in parse_format_specs
8924211f3 Update README.rst
525e7649c Update CONTRIBUTING.md
0ecb3d182 Optimize alignment parsing
975530784 Optimize format_uint
7446818f9 Simplify vformat_to
280b5612c Add option to force usage of inline namespaces
e57ec7d56 Merge vformat_to overloads
2a3f4de3f Remove iterator_category
27fdb4ead Unshadow floaty
297e0bad8 Apply clang-format
e3b4c22ec Simplify is_output_iterator
da8278e1e Update changelog and bump version
17fba753c added position independent documentation (#1939)
71e705a27 Update README.rst
74654c8cb Fix compilation for systems without fcntl.h (#1942)
f468b203a Avoid conversion from long long to size_t (#1935)
20d4f2e83 Fix handling of weird character types when parsing sign (#1932)
08370c39f Update README.rst
bd3c79250 Fix float fuzzer
8d3fd86d6 Merge branch 'master' of github.com:fmtlib/fmt
403471571 Update README.rst
37d738fa6 Update README.rst
271eff149 Make classes derived from buffer<T> final to silence the virtual destructor warning. (#1937)
010efc310 Add float fuzzer and cleanup
811c8b58c Add float fuzzer and cleanup
82c4e2236 Cleanup fuzzing
63e40c961 Fix naming of fuzzers
2f448ed56 Fix fuzzer timeouts
af2830596 Cleanup
48ea8193d Explain why assert-test is a separate test
1d112bdd1 Remove old test
5eb292a65 Update README.rst
7e56b6b6c Fix coding style and remove duplicate fuzzer
41d97e1ef Fix a UB on ridiculously large precision
01c37e0a4 Added check for `-mbig-obj` and ref qualifier check (#1929)
a5e7e7db9 Fix handling of thousand separator (#1927)
bf19051a9 Optimize floating point formatting
3c13a88b1 Optimize floating point formatting
f6d75c534 Refactor write_float
e9c0b2d69 Merge write_float overloads
7eddbfed5 Cleanup exponent handling in write_float
b347b3023 Update dynamic_formatter comment (#1923)
3541880ef Fix integer overflow when using max int precision
7b50dc0b2 Don't exclude all detail symbols from docs
280524310 Fix the doc config
34f22e88a Cleanup CMake config
a18b3fbbd Fix fixed precision handling when rounding (#1917)
727703573 Fix long lines in usage.md
7612c1ea8 Add reference to lhelper package manager in usage
b91d39f20 Get rid of float_writer
b4b64b9cc Refactor float formatting
712abe40f Workaround a bug in gcc 7.5 (#1912)
af8a180ae Make GetCachedPower test more precise
a581e9e5d Fix warning C4018: '<=': signed/unsigned mismatch (#1908)
05a28312c Update docs
4d0aa4d8f Update link
575f40189 Simplify FP formatting and follow coding conventions
6f3536f97 Move zero-check to an earlier branch (#1906)
90ef46df0 Fix dragonbox integration
3ae88147e Fix declaration
641795257 Improve dragonbox integration
79694d424 Fix WriteConsole signature
51f2e2ca2 Move nan test to where it belongs
68555fdbd Make format-test not depend on color.h
63e0c3541 Make dragonbox::to_decimal available in format.h
2213a7110 Update README.rst
79ba37f3b Update README.rst
a905d8f70 Merge grisu-test into format-test
762c33a96 Simplify windows handling (#1903)
253d63159 Remove dependency on windows.h (#1900)
c156093ff Fix carry in fallback_format
34179b335 Update format.h (#1898)
0651e4598 Minor tweaks to get_cached_power
6c025520a Test that max_k is correctly defined
51f8d0cc2 Reuse log10_2_significand constant
1305cbeb6 Fix MSVC2019 error C2049 when compiling with /clr (#1897)
2d4fde3a2 Don't emit trailing zero for consistency with std::format
5fd89d50e Minor simplifications
605ce5e42 Simplify divisible_by_power_of_2
085171e7e Remove grisu_count_digits
aa729bf25 Remove dead code
aa2ddf9b8 Simplify Dragonbox integration
c1654ce48 Simplify uint32_or_64_or_128_t definition
33712dc07 Combine pragmas
e5942ac9d Tweak comments
aae7a1338 Remove unused pragmas
6bcde9aab fmtlib/fmt#1882 (comment) (#1894)
bb0db5e51 clang-format
16410056b Optimize copy_str for counting_iterator
2591ab91c MSVC optimizations for count_digits. (#1890)
d5b8002dc Update README.rst
821471e1d qkw: generalizing aliasing | using fmt library and it's features (#1888)
2e620ddbc Small improvements that should have zero to negligible impact on the runtime (#1887)
2f7e08856 Disable range formatter if value type is not formattable (#1885)
c46a8de4e Simplify test
2696dc927 add forgotten template argument to make_format_args which made some u… (#1877)
0016da7ab Don't generate zeros and fix UB on huge precision
ce3f76994 Merge intrinsic blocks
3b6248f60 Change formatting
2d9b1dd0a Fix sign mismatch
1f0600a23 Fix bug regarding FMT_SAFEBUFFERS
2ecdbb986 Fix a bug in ctzll
6f81ea151 Fix typo (and thus bug)
0c8ffe9b0 Implement Dragonbox (first version)
42699bf40 Fix msvc version of clz & clzll (#1880)
bc51a8df0 Disable fallthrough attributes for the Intel compilers on Linux and MacOS (#1879)
45da432d6 fix compiler warnings in public header files
d55e61f12 Improve FMT_ALWAYS_INLINE (#1878)
7e6827521 Remove trailing zeros when using fallback formatter (#1873)
1d696dc28 Handle exotic character types in compilation
f674434a6 Add format_to_n overload that accepts FMT_COMPILE (from #1767) (#1869)
5b5a59719 Fix handling of wide alignment
f80ed64dd Update README.rst
381396649 Simplify fallback format
dce8e49b4 Handle float in fallback formatter
78b594431 Spelling
f233b56cd Don't generate insignificant digits
595902f8a Update test
4f2ee8921 Use built-in FP formatter for any precision
58a044be5 Use built-in FP formatter for any precision
efe3694f1 Macro tweak and clang-format
9f312fe87 Implement fallback FP formatting with given precision (#1526)
fb289cf56 Fix coding conventions
86f0a7046 Fix formatting
bff4d18ef Add color format_to overloads * Fix variable size basic_memory_buffer colorization * Fix an unused arguments warning on GCC that blocks the CI otherwise * Ref #1842 * Ref #1593
f19b8885f Fixed a warning in mingw32/mingw64 (#1860)
f8e00a084 NOMINMAX not handled properly (#1855)
6cccdc24b Fix move constructor (#1844)
69902c178 Allow use of <fcntl.h> in Linux when __has_include is not available (#1848)
1edd38b96 Add append mode. (#1847)
e66ba1692 Added build2 usage instructions. (#1838)
f39e6fb61 Add formatters for chrono::time_point<system_clock> (#1837)
77b627be2 Fix bogus MSVC warnings (#1825)
5dff01d31 Add complex tests
d16d585e6 Update signatures
c7e6d8afb Fix usage of override (#1836)
92bff2fe2 Revert "Add missing includes"
a0dcfbc57 Add ptr to docs
1651b2d43 Fix detail::write with fallback formatter (#1829)
06895a768 Add missing includes
92a448a07 Apply clang-format
6be654466 Fixing buffer_appender's ++ slicing (#1822)
951e0d233 CMakeLists.txt: Added Wundef warning to clang and gcc. (#1823)
f9f02df71 CMakeLists.txt: Clang-warnings: removed -Wno-sign-conversion (#1817)
76e97dc4d Eliminate shadowed variable warnings on intel (#1816)
e204df0e6 nvcc compiler should be EDG-based, but fails test (#1818)
1c8bb5470 small changes to reduce clang-9 warnings (#1808)
4b69c7875 fix: warning C4100: unreferenced formal parameter (#1814)
fb0aeb820 fix: disabled UDL templates for PGI (#1811) (#1812)
54daa0864 Add dynamic width support to FMT_COMPILE (#1809)
6fb7c6fb2 Workaround a bug in gcc10 (#1810)
16985fdad Update README.rst
1378ddaef Update README.rst
4fd95e4b4 Don't remove trailing zeros with #
e06ae3229 Avoid warnings on functions with external linkage that don't have declarations
7fc3d1f54 Add override to grow
065889a59 Use correct capacity in iterator_buffer (#1807)
d0dd67869 Adding convenience append(range)
0e7cef069 Merge commit 'c13f79e0'
e2c8c4557 Update README.rst
e4c954ff0 Update README.rst
c13f79e09 Merge release branch
d7921d649 Update README.rst
4a4fc225e Update changelog
61602a75d Remove -Wno-shadow
2f8fc29e9 Update README.rst
717b226b5 include/fmt/format.h: explicit cast to std::size_t for parameter to buffer.resize() in order to get rid of warning 'implicit conversion changes signedness:' in clang-8 (#1802)
2a69f5676 Tweak buffer size
ea7693380 Simplify ostream
5413713c9 Remove unused function
57f462428 Increase the default buffer size
0b6e7cc60 Update README.rst
e587adb4e Simplify count_digits
279d698e1 Fix handling of default alignmment with locale (#1801)
76cfb50b2 Test complex formatter
208291205 Optimize count_digits
8d9ab9673 Cut a few cycles from count_digits
734344931 Simplify ostream_params
2a47a1e48 Update README.rst
7c4c5c79d Make buffer size configurable
f0b84da5f Don't use 128 bit integers with clang-cl (#1800)
a3dfd6f92 Workaround a bug in msvc
51d05521e Workaround broken numeric_limites, part 2 (#1787)
21c8b5c14 Report error on missing named argument (#1796)
d82fdcc9e Fix handling of iterators in locale-specific formatting (#1782)
633213d96 Merge release branch
e8f2580a4 Bump version
6cefe55ac Update changelog
64e2da15c Update README.rst
1c8c810f8 Update README.rst
c2399ccfc Update README.rst
a7c5db06d Update README.rst
a4c22acd0 Update README.rst
0c1f4b5a0 Update README.rst
63b422ee5 Update README.rst
26e81a673 Update README.rst
de5fc6af3 Update README.rst
9c2edfd1a Partially revert 638db5 because it breaks the doc build
810357c01 Document color
0a7032a40 Update README.rst
95d3abf95 Make format_to_n part of the core API
98626093d Correct the locale format specifier in api.rst (#1792)
47f8d7a34 Make formatted_size part of the core API
46a63b708 Update docs
430f393d6 Disabled __attribute__((deprecated)) usage for LCC (#1790)
febffa4e6 Make join() handle non-const-only begin/end ranges (#1786)
d69e2da22 Fix apidoc
ce73ea37f Reorder functions
d39d661b1 Workaround broken numeric_limits (#1725)
c228bfe88 Improve docs
38ce19f73 Update README.rst
d11849bc0 Add FMT_REDUCE_INT_INSTANTIATIONS flag (#1781)
c08518a25 Move make_args_checked to the public API
e2837084e Add a color section
9f0c00337 Simplify format string checks
d615137ca Improve handling of buffer iterator
26b47b6fb Bump tested CMake version to 3.18
7a01c9c52 Update README.rst
b17d5c4f5 Fix a regression in handling digit separators (#1782)
eb90da2e8 Type erase output iterators
9d3cd0afb Type erase output iterators
18024853b Fix compatibility with CMake 3.4 (#1779)
f5d4215b7 Trying to clear ambiguous compile time claims (#1775)
c26349f4d Improve error reporting
f4b11ef6e Add a short anchor
0097cf113 Report unformattable type name more prominently
8fa20b471 dev -> latest
a03bd3ddb Autodetect MSVC static runtime (#1770)
c108ee1d5 Clarify a comment
a8074a865 Update README.rst
5f6295486 Update README.rst
bd903f96a Clarify precedence
16cac46a0 Improve handling of streamable and convertible to bool types (#1766)
415cd5191 direct_buffered_file -> ostream
e1bfb5961 Fix handling of code units in compile
ba8d98cbb Cleanup direct_buffered_file
04a1f6e99 Improve handling of single code units in compile
e4f57bfd7 Add an overload of write for buffer_appender
d87046815 Make append work with fixed-size buffer
e8ec09ae8 Cleanup core-test
a2c4fed98 Double buffering no more
36406509d Add a fixed buffer
60c43e870 Apply clang-format
b998e0f30 Reduce symbol sizes and simplify iterator use
c5adfc51c Update README.rst
c4ad94ce2 Update README.rst
c1429651e Fix image source link
638db5ca5 Use Cmake to find Python and Sphinx-doc.
c09056975 Update readme
1efdb2dde Simplify readme
dc69afad1 Cleanup example
445f5d392 Break long lines
23063c344 Update readme
f57b62575 Move PR template to the top level

git-subtree-dir: extern/fmt
git-subtree-split: cc09f1a6798c085c325569ef466bcdcffdc266d4
clrpackages pushed a commit to clearlinux-pkgs/fmt that referenced this pull request Mar 3, 2021
Adam Burgess (1):
      Add formatters for chrono::time_point<system_clock> (#1837)

Adnan (1):
      added position independent documentation (#1939)

Alberto Aguirre (1):
      Allow disabling floating point support (#1590)

Alexander Gallego (1):
      README: add vectorized.io/redpanda in the list of users

Alexander Lanin (1):
      Fix usage of override (#1836)

Alexey Ochapov (2):
      Fix detail::write with fallback formatter (#1829)
      Add format_to_n overload that accepts FMT_COMPILE (from #1767) (#1869)

ArthurSonzogni (1):
      Do not use -Wl,--as-needed with emscripten.

Attila M. Szilagyi (1):
      Add back missing OUTPUT_NAME in target properties. (#1598)

Attila Mark (2):
      Configure fmt.pc library name correctly.
      MINGW cross compiler fixes

Attila Tajti (1):
      Fix UTF-8 truncation

Axel Kohlmeyer (1):
      Disable fallthrough attributes for the Intel compilers on Linux and MacOS (#1879)

Barry Revzin (3):
      Adding sentinel support to fmt::join(). (#1689)
      Adding convenience append(range)
      Fixing buffer_appender's ++ slicing (#1822)

Bart Siwek (1):
      Make classes derived from buffer<T> final to silence the virtual destructor warning. (#1937)

Beat Bolli (1):
      Fix compilation with MinGW

Bernd Baumanns (1):
      Remove dependency on windows.h (#1900)

Bruce Mitchener (1):
      Fix typos.

Chris Martin (1):
      Squelch MSVC warning exporting subclasses of runtime_error

Clare Macrae (1):
      Ignore /doc/node_modules directory

Dair Grant (2):
      Fix clang -Wdisabled-macro-expansion warning from FMT_STRING_IMPL.
      Add FMT_HAS_CPP14_ATTRIBUTE / FMT_HAS_CPP17_ATTRIBUTE to test for language-specific attributes.

Daniel Laügt (1):
      Use overridden locale in ostream

Daniela Engert (1):
      Convert 'char8_t' character sequences to 'char' sequences

Daniil Goncharov (1):
      fix max/min macro (#1697)

Daumantas Kavolis (3):
      fix `get`
      fix name clash in header-only mode
      add test for multiple compilation types

David P. Sicilia (1):
      Move has_formatter into the public fmt namespace. (#1407)

Denis Blank (1):
      Add color format_to overloads

Deniz Evrenci (5):
      Rename internal::is_integral and internal::is_arithmetic
      Move definition of FMT_USE_INT128 to core.h
      Add support for built-in __int128 when available
      Add defaulted copy and move operations to format_error and system_error  (#1347)
      Fix handling of types with custom formatters that are convertible to std::string_view

Dmitriy Kurkin (2):
      Add check for CompiledFormat to avoid ambiguous call
      Fix undefined reference error

Dmitriy Vetutnev (1):
      Autodetect MSVC static runtime (#1770)

Egor Pugin (2):
      Export assert_fail with FMT_API. This fixes dll build.
      Remove unneeded FMT_API.

Egor Seredin (1):
      Map not int enum to correct underlying_type (#1286)

Federico (1):
      Extend FMT_FALLTHROUGH compatibily to gcc and clang pre-C++17 (#1469)

Fernando Pelliccioni (1):
      Knuth is using fmt library (#1691)

Florin Iucha (6):
      Fix -Wconversion warnings
      Remove invalid noexcept annotation
      Clean-up sign-conversion warnings in test code
      Clean-up sign-conversion warnings in test code
      Clean-up sign-conversion warnings in public headers
      Fix a conversion warning with Clang10 on Windows (#1750)

Gabi Melman (1):
      Added  #define WIN32_LEAN_AND_MEAN before including windows.h (#1729)

Giovanni Cerretani (1):
      NOMINMAX not handled properly (#1855)

Greg Sjaardema (13):
      Eliminate shadow variable warning
      Eliminate NVCC NVidia compiler emits unreachable code warnings
      Fix for older versions of intel compiler
      Use C++11-compatible operations
      Work-around for nvcc
      Use C++11 compatible std::is_same operations
      Fix so can work without locale defined
      Avoid windows issue with min() max() macros
      Spelling fixes
      Spelling fixes
      Spelling fixes
      nvcc compiler should be EDG-based, but fails test (#1818)
      Eliminate shadowed variable warnings on intel (#1816)

IkarusDeveloper (1):
      improved use of find (#1560)

Ivan Shynkarenka (6):
      Fix Visual Studio 2019 pedantic warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
      Fix more Visual Studio 2019 pedantic warnings (#1371)
      warning C4456: declaration of 'num_digits' hides previous local declaration
      warning C4468: 'fallthrough': attribute must be followed by a case label or a default label
      warning C4267: 'argument': conversion from 'size_t' to 'DWORD', possible loss of data
      Fixed a warning in mingw32/mingw64 (#1860)

Jack Andersen (1):
      Repoint one more Python 2 link to Python 3

JackBoosY (5):
      Add vcpkg installation instructions
      Correct display format
      fix url link
      re-fix url link
      update format

James Beach (1):
      Exclude std::abort from compilation when compiling CUDA with Clang (#1661)

Jan Schwers (1):
      fix compiler warnings in public header files

Jan Tojnar (1):
      build: Fix installation paths

Jason Turner (1):
      Avoid namespace clash for fmt

Jelle van der Waa (1):
      Don't install sphinx cache files

Jeremy Ong (1):
      Provide overload for `fmt::join` that handles `std::tuple`s

Johan Norberg (2):
      Remove warning in format.h when compiling with gcc and -Wshadow
      Remove warning in core.h with when compiling with gcc and -Wshadow

Jordan Williams (1):
      only modify CMAKE_RUNTIME_OUTPUT_DIRECTORY if it is not already set

Joël Lamotte (1):
      Added build2 usage instructions. (#1838)

Junekey Jeon (6):
      Implement Dragonbox (first version)
      Fix typo (and thus bug)
      Fix a bug in ctzll
      Fix bug regarding FMT_SAFEBUFFERS
      Fix sign mismatch
      Change formatting

Kazantcev Andrey (1):
      Fix warning C4018: '<=': signed/unsigned mismatch (#1908)

Kevin Puetz (1):
      nested replacement fields may omit arg_id (#1681)

Khalil Estell (1):
      Add FMT_REDUCE_INT_INSTANTIATIONS flag (#1781)

Kingcom (2):
      Don't use 128 bit integers with clang-cl (#1800)
      Don't use 128 bit integers with clang-cl (#1800)

Krzysztof Wesolowski (1):
      Allow to avoid inclusion of os.cc in fmt target

Laurent Stacul (1):
      Fix empty debug postfix

Leon Klingele (1):
      test: add default constructor for a const value

Leonid Yuriev (1):
      Tweaks for EDG based compilers (Intel, nVidia, MCST/Elbrus, etc).

Lindsay Roberts (1):
      Update date formatting example to use threadsafe localtime

Lucian Petrut (1):
      Fix Mingw support

Léonard Gérard (1):
      Trying to clear ambiguous compile time claims (#1775)

Malcolm Parsons (1):
      Correct the locale format specifier in api.rst (#1792)

MarcDirven (1):
      Added check for `-mbig-obj` and ref qualifier check (#1929)

Markus Werle (1):
      Make implicit capture explicit for C++20 (#1669)

Milian Wolff (1):
      Fix symbol visibility on Linux when compiling with -fvisibility=hidden (#1535)

Nikolay Rapotkin (1):
      Ability to join elements of std::initializer_list was added

OptoCloud (1):
      Removed [-Wsign-conversion] warning in GCC

Orivej Desh (9):
      Fix undefined in core-test and printf-test (#1345)
      Fix undefined in format-test (#1349)
      Deduplicate color vformat and vprint
      Encode types using 5 bits
      Use words for packed constants
      Distinguish float from double
      Rename write_double to write_fp
      Support single precision floats in grisu formatting
      Support custom FMT_INC_DIR in pkgconfig and cmake configs (#1702)

Paul Dreik (3):
      add oss fuzz badge
      let README point to python 3 instead of 2
      fix bad oss fuzz link in the oss-fuzz badge

Pramod Kumbhar (1):
      Workaround for broken [[deprecated]] in PGI compiler (#1581)

Raul Tambre (1):
      Bump tested CMake version to 3.18

Ravi J (1):
      qkw: generalizing aliasing | using fmt library and it's features (#1888)

Riccardo Ghetta (larix) (1):
      Fix MSVC2019 error C2049 when compiling with /clr (#1897)

Richard Musil (1):
      Making CUDA test work with CMAKE_MSVC_RUNTIME_LIBRARY

Robert Franke (1):
      Fixing installation directory of '*.dll' files on Windows

Rosen Penev (11):
      Fix minor clang-tidy warnings
      fmt.pc.in: Fix for cross compilation
      [clang-tidy] Turn deleted function to public
      [clang-tidy] Changes suffixes to uppercase
      [clang-tidy] Use braced init list
      [clang-tidy] Add parentheses to macro arguments
      [clang-tidy] Add noexcept where move is used
      [clang-tidy] Use auto
      [clang-tidy] Replace {} with = default
      [clang-tidy] Add missing override
      [clang-tidy] Replace deprecated C headers

Scott Ramsby (3):
      Add .vs to .gitignore
      Enable FMT_STRING() use with types other than string literals
      Use FMT_THROW macro where applicable

Seokjin Lee (1):
      fix: warning C4100: unreferenced formal parameter (#1814)

Spirrwell (1):
      Color formatting fixed for wide strings (fixes issue #1594) (#1596)

Tanki Zhang (1):
      use memory_buffer to make color print behave atomic #1348 (#1351)

TheQwertiest (1):
      Disabled __attribute__((deprecated)) usage for LCC (#1790)

Tobias Hammer (3):
      Use FMT_NOEXCEPT instead of noexcept directly
      Fix possible infinite recursion in FMT_ASSERT (#1744)
      Remove accidental parenthesis (#1968)

Tom de Geus (1):
      [docs] Added conda

Tony E Lewis (1):
      Make join() handle non-const-only begin/end ranges (#1786)

Vedran Miletić (1):
      Fix shared build on Solaris

Victor Zverovich (759):
      Workaround broken [[deprecated]] in Intel compiler (#1273)
      Make buffer_range public and update custom formatting docs (#1281)
      FixedEnum -> StrongEnum and make it a regression test
      Fix warnings (#1288)
      Document floating-point n specifier (#1291)
      Fix compile-time checks for user-defined types (#1292)
      Add -Werror to tests
      Simplify format string compilation
      Refactor format string compilation
      Remove string_view_metadata
      Make compile work with user-defined types
      Remove unused code and refactor
      Simplify format string compilation
      Clarify use of the core API in header-only mode (#1296)
      Initial implementation of optimal compile-time formatter generation
      Reduce the numer of ifdefs with an empty (u)int128_t fallback
      Add ccache to the list of projects
      Format octal 0 as 0
      Make numeric alignment optional
      Update README.rst
      Update README.rst
      Update index.rst
      Integrate new format string compilation
      Tweak comment
      Add a bigint stub and reenable grisu
      value -> bigit
      Refactor normalize and clean up
      Implement left shift
      Implement multiplication and part of assignment from pow of 10
      Add max_value
      Fix format overload that takes text_style (#1305)
      Fix fallback_format (#1306)
      Update ChangeLog.rst
      Fix a warning (#1319) and simplify code
      Don't use const char* overload of operator<< (#1309)
      Remove redundant and nonportable test (#1313)
      Disable integral operator<< (#1316)
      Update README.rst
      Fix ambiguity for types with dodgy conversions
      Fix handling of types convertible to std::string_view
      Initial implementation of square
      Implement more bigint operations
      Implement divmod
      Fix compile error in printf with gcc9 (#1354)
      Implement more comparison operators
      Implement add_compare
      Fix a linkage error introduced by #1360 (#1362)
      Partially implement (FPP)^2
      Handle negative exponent and rename value/pow10 to numerator/denominator
      Handle negative exponent and nonnegative power
      Reduce bigint capacity
      Apply clang-format
      Implement round half to even
      packed_arg_bitsize -> packed_arg_bits and remove packed_arg_mask
      Fix computing lower boundaries for smallest normalized double
      Handle assymetric boundaries
      Initialize all the things
      Improve handling of signs
      Simplify grisu_writer
      Optimize counting
      Remove obsolete comment and clang-format
      clang-format
      Simplify NVCC checks
      Simplify grisu_writer
      Don't emit trailing zeros in exponential notation (#1376)
      Make unsigned-integer-overflow sanitizer happy (#1377)
      Simplify format_handler
      Apply get_cached_power optimization by jk-jeon
      Always inline grisu_gen_digits and disable grisu2 by default
      Add double support to compile
      Workaround X11 madness (#1388)
      Remove redundant ctor
      basic_parse_context -> basic_format_parse_context per standard and document
      Try fix CI
      Document members
      Update docs
      Mark apidoc as rst
      Correct basic_string_view from string ctor
      Remove broken CI config
      Improve POSIX API detection
      Tweak the docs
      Don't use POSIX API on UWP
      Bump version
      Document and clean basic_format_parse_context
      Tweak the docs
      Apply coding conventions to examples
      Apply coding conventions to examples
      Clarify that numeric alignment is deprecated
      Fix indentation
      Move float_spec_handler to internal namespace and update asserts
      Replace bool with float_format and add exponential
      Refactor float spec parsing
      Make % an opt-in to improve compatibility with std::format
      Remove Grisu2
      Deprecate the fmt macro
      Don't parse % unless FMT_DEPRECATED_PERCENT is set
      Use grisu for exponent notation
      Remove redundant qualification
      Merge safe-duration-cast.h into chrono.h
      Make parse_arg_id more readable
      Move basic_writer::write_fp to where it belongs
      Update README.rst
      Update README.rst
      Update comment
      Merge write_fp into write
      Don't print % for nan and inf
      Cleanup FP formatting
      Refactor floating point formatting
      Refactor floating-point formatting
      Integrate Grisu and sprintf digit generators
      Handle null terminator at the end of the buffer
      Don't print trailing zero with fixed, precision=0, and showpoint (#1417)
      Minor cleanup
      Instantiate snprintf_float
      Simplify Grisu implementation
      Remove fp::operator-
      Update comment
      Fix handling of types with deleted rvalue conversion to string (#1421)
      Fix hexfloat buffer reallocation
      Fix handling of streamable and convertible to string types
      Fix precision handling in snprintf_float
      Update README.rst
      Enable -Wswitch-enum in CI
      Remove gen_digits_params
      float_spec -> float_specs
      Refactor floating-point formatting
      Update docs
      Add missing newline
      Update changelog
      Update changelog
      Update docs
      Fix fallback pointer formatting on big endian
      Fix handling of missing fraction in snprintf_float
      Fix fallback pointer formatting on big endian, take 2
      Remove dependency on <cassert>
      Fix handling of fallback_uintptr
      Fix dangling else problem in FMT_ASSERT
      digits -> num_bits
      Update changelog
      Avoid wchar_t instantiations
      Update changelog
      Update changelog
      Update changlog
      Clean up includes
      Put vprint declarations in one place
      Update docs
      Update changlog
      Update changelog
      Bump version
      Update version
      Add a missing decimal point in exponent notation with trailing zeros
      Update ChangeLog.rst
      Remove TYPES
      Revert #1433 because of build failures (#1450)
      Bump version and update changelog
      Update changelog
      Remove trailing comma
      Update version
      Relax fallthrough attribute detection
      Ditch decimal_formatter (#1363)
      Remove '%' from the docs
      Update README.rst
      Update README.rst
      Revert "Clean-up sign-conversion warnings in test code"
      Fix handling of int128_t in format-impl-test (#1461)
      Remove redundant cast
      Add FMT_CUDA_TEST CMake option to enable cuda-test
      Fix handling of types convertible to std::string_view
      Reintroduce sprintf_format for ABI compatibility
      Prepare for the next release
      Update changelog
      Update version
      Improve error reporting
      Fix a typo
      Apply a typo fix retroactively
      Avoid shadowing warnings in FMT_STRING
      Give an error on precision overflow
      Add a UTF-8 decoder
      Implement utf8_to_utf16 using utf8_decode
      Move OS-specific APIs to a separate header
      posix.cc -> os.cc
      Rename posix-test to os-test
      Handle block boundaries in utf8_to_utf16
      Apply clang-format and update inclusion guards
      Simplify FMT_STRING_IMPL
      trailing_zeros -> showpoint
      Add trailing decimal point if # is specified (#1476)
      Add os.h to docs
      Make round_direction a scoped enum
      Make type a scoped enum
      Apply clang-format
      Handle block boundaries in utf8_to_utf16
      Improve UTF-8 support
      Flatten forward
      Improve UTF-8 handling on Windows
      Improve UTF-8 handling on Windows
      Enable mojibake
      Deprecate u8string_view
      Add fmt::bytes
      Update apidoc
      Update syntax.rst
      Update syntax.rst
      Clarify lifetime of basic_format_args
      More showpoint fixes and tests (#1498)
      Simplify example
      Suppress a bogus -Wdouble-promotion warning
      Catch invalid uses of fmt::arg
      Move vprint_mojibake to the internal namespace
      Fix handling of output iterators in format_to_n (#1506)
      Restructure float_format
      Optimize grisu_gen_digits
      Improve join docs
      Use type_identity to block unnecessary template argument deduction (thanks Tim Song)
      Remove redundant braces
      Move docs to the proper place
      Add a locale example
      Remove static and simplify names
      Avoid unnecessary unsigned overflows (#1515)
      Add variable-width fill support (#1109)
      Bump version
      Test invalid fill
      Update fill docs
      Add more examples
      Add namespaces
      Workaround a bogus MSVC warning
      Add locale example
      Fix length computation of constexpr C strings
      Disallow passing non-string-literals to FMT_STRING
      Apply coding conventions
      Update README.rst
      string_view::char_type -> value_type (#1539)
      Only use compiler features if available
      Fix a link error in gcc8 (#1548)
      Make formatter override implicit conversion to a C string
      Workaround broken UDL templates in GCC < 6.4
      Remove misleading FMT_USE_WINDOWS_H
      Fix to_string docs
      Don't use internal GTest API
      Make FMT_ASSERT work in constexpr on clang 4.0.1
      Tentative fix for default template param in friend error
      Make compile-time checks in format_to handle references
      Apply clang-format
      Make FMT_DEBUG_POSTFIX a cache variable (#1566)
      Improve width computation
      Deprecate undocumented _u suffix
      Fix ambiguous overloads of format & format_to
      is_static_compiled_format -> is_compiled_format
      Cleanup CMake config
      set_doc -> set_verbose
      Remove gcc 4.4 workaround
      Tweak a comment
      Workaround broken fallthrough attribute in the PGI compiler (#1583)
      Fix handling of volatile enums
      Workaround 'cannot call member function without object' error on gcc 4.9
      Fix handling of empty tuples (#1588)
      Fix a typo in CMake config: STRINGS -> STRING
      Deprecate fmt::char8_t
      Allow leading zeros in precision (#1579)
      Minor tweaks for dynamic_format_arg_store
      Simplify dynamic store
      Simplify dynamic_format_arg_store
      Don't use properties when setting FMT_LIB_NAME
      Move FMT_USE_FLOAT and friends to fmt/format.h
      Improve exception safety in dynamic_format_arg_store
      Detect /utf-8 in MSVC
      Fix handling of small precision in general format
      Fix -Wsign-conversion warnings
      Undo comment change
      Update readme and add compatibility option
      Fix wide print overload (#1609)
      Update changelog
      Reduce binary size
      Fix posix-mock-test
      Follow naming conventions
      Implement the L specifier
      Update changelog
      Update changelog
      Update changelog
      Update changelog
      Bump version
      Fix markup
      Update changelog
      Fix gcc version check
      Fix punctuation in changelog
      Update version
      Update signature in the docs
      Fix the docs
      Fix handling of unsigned char strings in printf
      Bump version
      Define FMT_EXTERN_TEMPLATE_API on export
      Suppress a bogus MSVC warning
      Add floating-point L specifier (#1624)
      Simplify warning suppression
      Suppress an MSVC warning (#1622)
      Clean up printf
      Clean up basic_format_args
      Fix ostream support in sprintf (#1631)
      Fix a typo
      Fix a clang-tidy warning
      Add stack-based named argument storage
      Improve handling of named arguments
      Cleanup named arguments
      Merge arg overloads and cleanup
      Don't use constexpr on Intel compiler (#1628)
      Reenable constexpr _compile on GCC 9
      Fix incorrect assumptions about nul termination
      Simplify checks
      Always inline value ctors
      Always inline arg_data functions
      Simplify format_args
      Fix build on ancient gcc
      Don't generate RTTI for allocator
      Remove remaining wchar_t instantiation
      Use a delegating ctor and add inlines
      Add windows terminal to the projects using {fmt}
      Improve readme formatting
      Tweak readme
      Add Facebook Folly to the list of projects
      Fix a recent regression in handling max packed arguments
      Suppress bogus MSVC analysis warnings
      Clarify formatter reuse
      Fix markup
      Enable compile-time error tests
      Simplify udl_formatter with FMT_STRING
      Get rid of do_check_format_string
      Check dynamic widht/precision id at compile time (#1614)
      Don't access a C string past precision in printf (#1595)
      Revert "Check dynamic widht/precision id at compile time (#1614)"
      Check dynamic width/precision id at compile time (#1614)
      Clarify why we don't check argument id
      Improve compile time by using extern template (#1452)
      Clarify encoding conversion in chrono
      Reduce library size
      Reduce library size
      Fix a warning (#1649)
      Reduce library size
      Reduce branching in write_padded
      Bump fuzzer allocation limit
      Make write_padded non-members
      Pass iterator by value
      Fix a shadowing warning (#1658)
      Reduce template bloat in write_int
      Update README.rst
      Update README.rst
      Reduce library size
      FMT_CONSTEXPR -> constexpr
      Simplify vformat_to
      Remove undocumented deprecated APIs
      Cleanup
      Suppress ubsan warning
      Use '0' fill with numeric align for consistency with std::format
      Improve handling of alignment
      Improve handling of alignment
      Move int_writer to the namespace scope
      Refactor pointer formatting
      Inherit arg_formatter_base from basic_writer
      Fix inconsistent type detection (#1662)
      Move FMT_MAYBE_UNUSED to where it's actually used
      Remove deprecated APIs
      Separate nonfinite formatting
      Remove compatibility stubs
      Make copyfmt not throw (#1666)
      Purge basic_writer
      Revert enum change
      Purge basic_writer
      Purge basic_writer
      Consistently namespace qualify size_t
      Update changelog
      Update changelog
      Bump version
      Ditch internal::arg_map
      Named arguments go brrr
      Simplify named arguments
      internal -> detail (#1538)
      Update version
      Apply doc patch to 6.2.1
      Update docs
      Fix apidoc
      Add fmt::detail::buffer to the docs (#704)
      Update signatures
      Add c specifier support to integral types (#1652)
      Update analytics
      Move void_t to where it's used
      Optimize small string concatenation
      Optimize small string parsing
      Update README.rst
      Make ostream formatter work with compile-time format strings (#1692)
      Fix an example (thanks Alexey Kuzmenko)
      Remove a redundant branch
      Temporarily revert parsing changes
      Update README.rst
      Optimize common case
      Use memcpy for copying digits
      Reduce the number of comparisons
      Improve handling of separators
      Simplify arg_formatter_base
      Simplify arg_formatter
      Simplify copy_str
      Remove uses of buffer_range
      Remove uses of buffer_range
      Increase VM disk size
      Remove undocumented buffer_range and output_range
      Inline parse_format_string
      Fix format_decimal overloads
      Cleanup arg_formatter_base
      Fix a warning
      Move digits10 to where they belong and add comments
      Fix warnings
      Fix a warning (#1712)
      Move format_handler to detail
      Optimize format handler
      Optimize format string parsing
      Inline visit
      Optimize format string parsing
      Make advance_to a noop for back_insert_iterator
      Make symbols readable
      Inline visitor
      Simplify arg_formatter_base
      Cleanup arg_formatter_base
      Fix a UB
      Add default_arg_formatter
      Improve default formatting
      Update README.rst
      Update README.rst
      Fix a warning (#1722)
      Update README.rst
      Tweak comments
      Add a simple format string compilation API
      Enable compilation for all types
      Fix a warning
      Optimize small string parsing
      Reduce branching
      Fix sign handling in 'L'
      Undo branching reduction
      Undo branching reduction
      Use write instead of format_int in to_string
      Fix formatting of bool with FMT_COMPILE and add more tests
      Reuse format_decimal
      Fix ambiguity
      Re-enable assert in format_decimal
      Finish text::format
      Inline compiled format
      Make to_string bypass format
      Optimize common case
      Update README.rst
      Streamline default FP formatting
      Add FMT_COMPILE support to format_to
      Reintroduce UDT support to fmt::to_string and test ADL
      Add user-defined type support to compilation
      Deprecate compile
      Fix a compile error introduced in #1738
      Update README.rst
      Document format string compilation
      Apply clang-format
      Extract docs from compile.h
      Tweak the docs
      Don't use non-portable attribute
      Update changelog and disable internal
      Update changelog
      Update changelog
      Use digit pairs as in unrolledlut
      Add a simple buffered stream with no sync
      Use consistent include style
      Fix a typo
      Fix a typo. Thanks Tracy Chapman from TripleChecker
      Make the n specifier an opt-in
      FMT_NUMERIC_ALIGN -> FMT_DEPRECATED_NUMERIC_ALIGN
      Update changelog
      Fix formatting
      Update changelog
      Disable numeric formatting by default
      Update changelog
      Update changelog
      Deprecate arg_formatter
      Update changelog and readme
      Update README.rst
      Update readme
      Update changelog
      Update changelog
      Update README.rst
      Update ChangeLog.rst
      Rename changelog
      Convert changlog to markdown
      Update changelog
      Revert changelog conversion since GFM is not supported there
      Revert changelog changes
      Update changelog
      Update changelog
      Update README.rst
      Add a section on std::format compatibility
      Update docs
      Bump version
      Minor corrections in the changelog
      Update version
      Update version
      Fix the docs
      Bump version in namespace
      Fix docs
      Workaround a bug in gcc
      Bump version
      Fix date
      Fix a changelog entry
      Update version
      Move PR template to the top level
      Update readme
      Break long lines
      Cleanup example
      Simplify readme
      Update readme
      Fix image source link
      Update README.rst
      Update README.rst
      Reduce symbol sizes and simplify iterator use
      Apply clang-format
      Add a fixed buffer
      Double buffering no more
      Cleanup core-test
      Make append work with fixed-size buffer
      Add an overload of write for buffer_appender
      Improve handling of single code units in compile
      Cleanup direct_buffered_file
      Fix handling of code units in compile
      direct_buffered_file -> ostream
      Improve handling of streamable and convertible to bool types (#1766)
      Clarify precedence
      Update README.rst
      Update README.rst
      Clarify a comment
      dev -> latest
      Report unformattable type name more prominently
      Add a short anchor
      Improve error reporting
      Fix compatibility with CMake 3.4 (#1779)
      Type erase output iterators
      Type erase output iterators
      Fix a regression in handling digit separators (#1782)
      Update README.rst
      Improve handling of buffer iterator
      Simplify format string checks
      Add a color section
      Move make_args_checked to the public API
      Update README.rst
      Improve docs
      Workaround broken numeric_limits (#1725)
      Reorder functions
      Fix apidoc
      Update docs
      Make formatted_size part of the core API
      Make format_to_n part of the core API
      Update README.rst
      Document color
      Partially revert 638db5 because it breaks the doc build
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update README.rst
      Update changelog
      Bump version
      Fix compatibility with CMake 3.4 (#1779)
      Fix a regression in handling digit separators (#1782)
      Workaround broken numeric_limits (#1725)
      Update changelog
      Bump version
      Update version
      Fix handling of iterators in locale-specific formatting (#1782)
      Report error on missing named argument (#1796)
      Workaround broken numeric_limites, part 2 (#1787)
      Workaround a bug in msvc
      Make buffer size configurable
      Update README.rst
      Simplify ostream_params
      Cut a few cycles from count_digits
      Optimize count_digits
      Test complex formatter
      Fix handling of default alignmment with locale (#1801)
      Simplify count_digits
      Update README.rst
      Increase the default buffer size
      Remove unused function
      Simplify ostream
      Tweak buffer size
      Update README.rst
      Remove -Wno-shadow
      Update changelog
      Fix handling of iterators in locale-specific formatting (#1782)
      Report error on missing named argument (#1796)
      Workaround broken numeric_limites, part 2 (#1787)
      Workaround a bug in msvc
      Fix handling of default alignmment with locale (#1801)
      Update changelog
      Fix changelog
      Bump version
      Update version
      Update README.rst
      Update README.rst
      Update README.rst
      Use correct capacity in iterator_buffer (#1807)
      Add override to grow
      Avoid warnings on functions with external linkage that don't have declarations
      Don't remove trailing zeros with #
      Update README.rst
      Update README.rst
      Workaround a bug in gcc10 (#1810)
      Add dynamic width support to FMT_COMPILE (#1809)
      Apply clang-format
      Add missing includes
      Add ptr to docs
      Revert "Add missing includes"
      Update signatures
      Add complex tests
      Fix bogus MSVC warnings (#1825)
      Fix move constructor (#1844)
      Fix formatting
      Fix coding conventions
      Implement fallback FP formatting with given precision (#1526)
      Macro tweak and clang-format
      Use built-in FP formatter for any precision
      Use built-in FP formatter for any precision
      Don't generate insignificant digits
      Spelling
      Handle float in fallback formatter
      Simplify fallback format
      Update README.rst
      Fix handling of wide alignment
      Handle exotic character types in compilation
      Remove trailing zeros when using fallback formatter (#1873)
      Merge intrinsic blocks
      Don't generate zeros and fix UB on huge precision
      Simplify test
      Disable range formatter if value type is not formattable (#1885)
      Update README.rst
      Optimize copy_str for counting_iterator
      clang-format
      Remove unused pragmas
      Tweak comments
      Combine pragmas
      Simplify uint32_or_64_or_128_t definition
      Simplify Dragonbox integration
      Remove dead code
      Remove grisu_count_digits
      Simplify divisible_by_power_of_2
      Minor simplifications
      Don't emit trailing zero for consistency with std::format
      Reuse log10_2_significand constant
      Test that max_k is correctly defined
      Minor tweaks to get_cached_power
      Fix carry in fallback_format
      Simplify windows handling (#1903)
      Merge grisu-test into format-test
      Update README.rst
      Update README.rst
      Make dragonbox::to_decimal available in format.h
      Make format-test not depend on color.h
      Move nan test to where it belongs
      Fix WriteConsole signature
      Improve dragonbox integration
      Fix declaration
      Fix dragonbox integration
      Simplify FP formatting and follow coding conventions
      Update link
      Update docs
      Make GetCachedPower test more precise
      Workaround a bug in gcc 7.5 (#1912)
      Refactor float formatting
      Get rid of float_writer
      Fix fixed precision handling when rounding (#1917)
      Cleanup CMake config
      Fix the doc config
      Don't exclude all detail symbols from docs
      Fix integer overflow when using max int precision
      Update dynamic_formatter comment (#1923)
      Cleanup exponent handling in write_float
      Merge write_float overloads
      Refactor write_float
      Optimize floating point formatting
      Optimize floating point formatting
      Fix handling of thousand separator (#1927)
      Fix a UB on ridiculously large precision
      Fix coding style and remove duplicate fuzzer
      Update README.rst
      Remove old test
      Explain why assert-test is a separate test
      Cleanup
      Fix fuzzer timeouts
      Fix naming of fuzzers
      Cleanup fuzzing
      Add float fuzzer and cleanup
      Add float fuzzer and cleanup
      Update README.rst
      Update README.rst
      Fix float fuzzer
      Update README.rst
      Fix handling of weird character types when parsing sign (#1932)
      Avoid conversion from long long to size_t (#1935)
      Update README.rst
      Update changelog and bump version
      Simplify is_output_iterator
      Apply clang-format
      Unshadow floaty
      Remove iterator_category
      Merge vformat_to overloads
      Simplify vformat_to
      Optimize format_uint
      Optimize alignment parsing
      Update CONTRIBUTING.md
      Update README.rst
      Optimize common case in parse_format_specs
      Move parsing optimization one level up
      Simplify arg formatter
      Woraround bugs in gcc 8
      Update changelog
      Update ChangeLog.rst
      Update ChangeLog.rst
      Update ChangeLog.rst
      Update changelog
      Update changelog
      Update changelog
      Point to the release, not dev documentation
      Update changelog
      Update changelog
      Update changelog
      Tweak markup
      Remove unused script
      Remove outdated build config
      Update readme
      Tweak markup
      Tweak markup
      Use the correct version of sphinx
      Always install the required version of breathe
      Bump version
      Update version
      Cleanup
      Instantiate to_decimal to make gcc lto happy (#1955)
      Fix ABI compatibility (#1961)
      Add a macro to workaround clang/gcc ABI incompatibility on ARM
      Update changelog and bump version
      Update version
      Fix fallback float formatter at assymetric bounds (#1976)
      Update changelog and bump version
      Update version
      Fix initialization of iterator_buffer (#1996)
      Fix more linkage errors (#2011)
      Update changelog
      Fix linkage errors when linking with a shared library (#2011)
      Fix more linkage errors (#2011)
      Workaround an issue with mixing std versions in gcc (#2017)
      Fix an overflow in format_to_n (#2029)
      Reintroduce ostream support to range formatters (#2014)
      Update changelog
      Fix formatting
      Bump version
      Fix test
      Update changelog
      Update version

Vitaly Zaitsev (1):
      Use Cmake to find Python and Sphinx-doc.

Vladimir Solontsov (3):
      Dynamic arguments storage. Implementation of enhancement from issue #1170. (#1584)
      Support named args in dynamic_format_arg_store (#1655). (#1663)
      Make dynamic_format_arg_store reusable and add reserve() (#1677)

alexey-milovidov (1):
      Add ClickHouse to the list of projects (#1751)

asraa (1):
      Replace FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION  with fmt-specific macro (#1650)

daniel (1):
      Use grouping() from locale for specifier 'n'

darklukee (2):
      Fix compilation for systems without fcntl.h (#1942)
      Add option to force usage of inline namespaces

dominicpoeschko (1):
      add const begin and end overload to buffer (#1553)

dspc-douglas (1):
      fix interal compiler error when building with mingw

fghzxm (1):
      Fix FMT_FORMAT_AS const specifier position (#1554)

flagarde (1):
      Move project in order to solve a CMake warning

francesco-st (2):
      Add reference to lhelper package manager in usage
      Fix long lines in usage.md

gabime (3):
      Fixed vs 2015 warning about unused variable when grisu is off
      Fix clang warning about explicit ctor
      Fixed clang tidy warning -multiple declarations in a single statement reduces readability

hhb (1):
      Rename precision parameter

iPherian (1):
      Squelch MSVC warning exporting subclasses of runtime_error (fix for PR #1433) (#1470)

jk-jeon (5):
      Improve FMT_ALWAYS_INLINE (#1878)
      Fix msvc version of clz & clzll (#1880)
      Small improvements that should have zero to negligible impact on the runtime (#1887)
      fmtlib/fmt#1882 (comment) (#1894)
      Move zero-check to an earlier branch (#1906)

kent-tri (1):
      Patch compiler error when building using nvcc

luncliff (1):
      Add a CUDA test

medithe (4):
      include/fmt/format.h: explicit cast to std::size_t for parameter to buffer.resize() in order to get rid of warning 'implicit conversion changes signedness:' in clang-8 (#1802)
      small changes to reduce clang-9 warnings (#1808)
      CMakeLists.txt: Clang-warnings: removed -Wno-sign-conversion (#1817)
      CMakeLists.txt: Added Wundef warning to clang and gcc. (#1823)

moiwi (1):
      Update format.h (#1898)

mwinterb (2):
      workaround VS2019 Update 3 compiler bug. (#1328)
      MSVC optimizations for count_digits. (#1890)

n16h7hunt3r (1):
      fix: disabled UDL templates for PGI (#1811) (#1812)

parkertomatoes (1):
      Mitigate MSVC issue with min/max macros (#1480)

peterbell10 (1):
      Fix some warnings (#1667)

refnum (4):
      Add FMT_NORETURN to assert_fail prototype. (#1569)
      Move FMT_CLANG_VERSION definition to core.h (#1568)
      Fix simple -Wsign-conversion cases. (#1571)
      Fix clang -Wsign-conversion warning in grisu_count_digits. (#1573)

rimathia (5):
      make plus flag for printf not be ignored for char argument (#1683)
      fix interaction of space flag and '+' flag, as well as '-' flag and '0' flag (#1687)
      fix zero flag for char types and make zero flag ignored if a precision is specified
      fix typo which caused the loss of the counting information when using a printf context with a truncating_iterator
      add forgotten template argument to make_format_args which made some u… (#1877)

t-wiser (2):
      Add append mode. (#1847)
      Allow use of <fcntl.h> in Linux when __has_include is not available (#1848)

torsten (1):
      check if _SECURE_SCL is defined not equal to 0

zeffy (1):
      Fix formatting std::chrono::duration types to wide strings (#1533)

Владислав Щапов (1):
      Workaround bugs in gcc 8

文佳鹏 (1):
      c++11 use formatting user-defined types (#1721)

谭九鼎 (1):
      Chore(readme): use https (#1481)
lioncash added a commit to lioncash/dynarmic that referenced this pull request Jun 23, 2021
9e8b86fd Update version
92fec0f0 Bump version
4749cc93 Update changelog
78a0ba0a Improve conversion of paragraphs
7a39837d Use a working breathe version
55b6e92d Fix docs
69dc3a85 Fix docs
27f4cdd5 Update changelog
70d61a0a Update changelog
427b5340 Add no_value state to value
e421d527 Simplify error handling in parse_nonnegative_int
a59678f3 Fix chrono_test.locale
c98254c3 Install locales into CI
c123a728 Fix set locale error in chrono formatter
3c8fad12 Optimize parse_nonnegative_int
f28cf330 adding a default format for std::chrono::time_point<std::chrono::syst… (#2345)
55010a9d Support non-`char` overloads (module)
0193e7c4 Support compile-time strings and compile-time format string compilation in module
3423d754 Remove the msvc workaround (#2351)
f6b5cc9f Fix chrono_test.weekday on legacy glibc
59a298f1 Enable `enforce-checks-test` for MSVC, too
36c29482 Update docs
c9fe1fa5 Remove unused flag
dccddc2b Apply clang-format
0e36681b Cleanup digit count
1de80f5b Workaround lack of static constexpr in constexpr functions
2039dce7 Detect consteval
d551b88a Move is_char specializations to xchar.h
16c3514d wchar-test -> xchar-test
206000a0 Workaround pathological conversion (#2343)
76ee4904 Move wchar/custom char overloads to xchar.h
e77b22d6 Deprecate memory buffer overload of format_to
07039f4b Update README.rst
4678192c Remove bsr2log10
7c3d3dfa Update thousands_sep_impl signature
ef826b86 Fix docs
5223f552 Remove FMT_ALWAYS_INLINE
cfde93af Add FMT_STATIC_CONSTEXPR
986a5a6c Fixed join_view formatter for wchar_t
7c8b35ff fix MSVC Win32 count_digits
3eeb084e Optimize count_digits
2ac0bfe5 Improve handling of thousands separator
024741b4 CI: set up multi-thread build for all platforms
f4c95f6d Improve handling of thousands separator
d4fbeacc Fix docs build
0eef389d Code style
e27b1ce5 Fix docs
9f8b6dac Fix wheel installation
6060bcfc Fix docs
ff967346 Fix docs
1085cc21 Fix docs
11addaa1 Update docs
760ca5cc Update docs
290d3f8b Cleanup ranges API
aa09e0f5 Update docs
d142579e Cleanup the format API
f286139d Fix "undefined reference to `fmt::v7::detail::basic_data<void>::digits'"
7b9d69b8 Add xchar.h to docs
cbd861f1 Update docs
faf972f0 Update docs
622d1c04 Update changelog
634c9487 Update changelog
a04e3a2d Comment
87876d54 Cleanup the printf implementation
d338d663 Cleanup the printf implementation
272660e7 Remove deprecated printf functions
5a95c5ae Update changelog
70e67ae0 Re-enable module testing Prepare for compilation with gcc (modules branch).
ad972589 Merge branch 'master' of github.com:fmtlib/fmt
ed2a6377 Workaround msvc constexpr issues
99768695 fix custom types formatting at compile-time, add test
8c1b22ba Workaround a gcc 9.1 bug (#2334)
2dba1cfa Update changelog
d7ba6c3e Use qualified name-lookup in module. (#2324)
bf9904ee Workaround msvc bugs
577bce90 Apply clang-format
ba4c7f19 Swap parameter order to match #2327 (#2329)
e9e89b35 Update ChangeLog.rst
9bb406d7 Update changelog
11a14db2 Update format_to taking a buffer and remove undocumented vformat_to overload
832ec098 Fix argument order in locale overload of vformat_to (#2327)
486a80e8 Move wchar_t overloads to xchar.h
19d45f4b Update changelog
5a2b88f6 Reduce binary size
00a39ad5 Enable `Char` types other than `char` (#2323)
ff37e416 wchar.h -> xchar.h because it handles other code unit types too
0901176f arg_join -> join_view
a9a90181 Move wmemory_buffer to wchar.h
4a7801c3 Update changelog
517578f8 Update changelog
85442ed0 Update changelog
6a12b13a Update changelog
1cfe3c73 Update ChangeLog.rst
c0601479 Update changelog
6fe04871 Update changelog
9d67988a FMT_DEPRECATED_WCHAR -> FMT_DEPRECATED_INCLUDE_WCHAR
765b451e Update changelog
17c993c7 Fixed compilation with CMake < 3.7 (#2321)
dde69373 Update changelog
272b0f36 More module tests (#2309)
126c8cb4 Export os.h API, too (#2318)
98b9ff47 Align hex floats right as default (#2317)
ece4b4b3 Update changelog
a70a4ae0 Ignore zero-padding for non-finite floating points (#2310)
7612f18d Update changelog
b9f2c276 Update changelog
4e21baff Simplify get_units
683ef11a Update changelog
ca466374 qualify make_format_args (#2315)
5a2a1856 Make buffers non-movable
ee52a6dc add `fmt::print()` overload to support compiled format (#2304)
82607efb Fixed int conversion warning (#2313)
35a2c2a7 Refactor chrono formatting
b955e7a6 Refactor chrono formatting
883d9595 Support alternative locale names in tests
1f308a3c Update integer presentation types documentation.
1cd9899c Add initial support for weekday formatting
069131dc Add unicode-test
dd8f38fc Cleanup printf API
a216f256 Remove undocumented and obsolete vprintf overload
0c092639 Add is_exotic_char trait
bc13c6de Update README.rst
8ec0b9e3 Do *not* export namespace `detail`
b99c2bd3 Remove deprecated `locale.h` from module interface unit
c04a2439 Update changelog
b099a56f Update changelog
703005c8 Deprecate locale.h
51f01786 Cleanup the format API
5d59dcf6 Remove deprecated aliases / undeprecate has_formatter
c242dd40 Move cerrno include to where it is used
2216e0b7 Update changelog
1c83a49b Simplify buffer extraction
2617384d Improve buffer extraction
34b8acae More wchar_t-specific API to wchar.h
6326c189 Improve code style consistency
5c4b0c86 Add missing Allocator template argument for basic_memory_buffer in format_to
00149c0b Move detail::null to chrono where it is used
c5c968cb Improve binary size
128cbdeb cmake: hide private symbols by default
18af1dc4 Fix binary size regression caused by b268f88
d1e6f0f8 Fix binary size regression caused by b268f88
5a0d99fa Add a test for the module
6e2e6b79 Restore support for `wchar_t` overloads in module
24b677d0 Improve symbol sizes
63271a51 Fix ADL issues
61b4c923 Reduce code bloat
2a2e4c58 addressing nits.
be48f4d6 Avoid unwanted sign extensions from MSVC in is_utf8.
13e65293 export missed symbols
71fb1138 fix compile error on msvc preview 4 (16.10) involving lookup clash /w STL
08d22503 Remove outdated comments
56f518a9 Update signatures
b7f29337 Update signatures
7483dfc6 Update signatures
95c358f7 Improve separation between code unit types
39c3c4ec Simplify the core API
e9c1c415 Improve compile-time checks
21d93bfd Move generic format functions to format.h
9a92eb41 Move more wchar overloads to wchar.h
0dd91e20 Add wchar.h for wide char overloads
ce14eafc Simplify format string checks
8d70c0ed Refactor the format API
813ac495 More API cleanups
4ab01fb1 Cleanup printf API
d5036b11 Remove deprecated APIs
25819462 Cleanup the core API
b35db4e0 Improve handling of 128-bit ints
d35f1ad5 Cleanup core
8f1902c0 Move format string checks to core.h
6469b903 Silence msvc warning about an unused named parameter
7d4c92fb Update ChangeLog.rst
0763d8ca Fix Visual Studio warning
5466373a Do *not* export namespace `detail`
588bdb54 Simplify get_arg_index_by_name
54f22a3e add support for statically named arguments with FMT_STRING
ea94d6d9 Prevent ambiguity in name lookup
57280762 Move specs checker to core.h
ced30375 Move dynamic specs to core.h
dd2bc998 Move specs to core.h
08da1adc Remove unused headers
3be0cc20 Fix handling of 128-bit ints
9648bdce add missing header
d1aebdbd Inline format_to
8f0fadfa Cleanup docs
02896dab Avoid use after move (#2278)
0036a1d1 Fix issue #2274.
2a9b3146 Replace fmt::error_code to std::error_code
2165bef4 Update README.rst
48629308 Optimize format string compilation
3207a8bb Get rid of unnecessary recursion to enable inlining
6214f15a Optimize standard formatter specialization
cd2c78fb Use write directly in formatter specializations
4211d865 Add a formatter specialization for std::error_code.
39f28424 Cleanup tests
84feeb0f Remove redundant comments and put common case check first
2665afb5 Cleanup add-subdirectory-test
d0abe7c2 Make chrono formatting locale-independent by default
50fb0b5e Fix formatting
16f2ef91 Replace fmt::system_error with std::system_error
4b885c86 Replace windows_error with system_error
5238055f Move esoteric char type support to format.h
9ac088f3 Add fmtlog to projects
849c9f61 Move is_name_start to core
23892caf Move more parsing to core
8e6390c3 Move FMT_STRING to core
51a33713 Move parsing to core
9c3af11a Cleanup tests
9d7b53cb Remove redundant formatter specialization for byte
f0095ccd Add support for ranges of types without formatters to join (#2262)
4f0eadfc Exclude fallback from is_formattable
400b953f Use [] instead of {} in ranges for consistency with Python format
38bcc04a Drop range limit and cleanup tests
c738c343 Cleanup tests
ed7c4320 Cleanup tests
9155e2de Cleanup tests
38127d9e Cleanup tests
c9c0e507 Cleanup tests
ccf4ccde Cleanup tests and format string compilation
e96a92f8 Cleanup tests and format string compilation
fd43e4dc gtest: fix std::is_trivially_copy_constructible for GCC 4.8 & 4.9 properly
3d51ccda gtest: remove obsolete `GTEST_LANG_CXX11` compile definition setting
833377ff gtest: add `.clang-format` file into `test/gtest` directory to prevent formatting there
53ca0cbe gtest: move GTest/GMock files to separate directory, update GTest/GMock usages
342973b3 Make wchar_t overloads usable in module Bring ''detail::find()' into scope.
355be4b1 Make FMT_COMPILE fallback on runtime without if constexpr (#2261)
0cd0fb91 C++17: std::char_traits<>::{compare,length} is constexpr - v2
d1a6e560 Keep defaulted destructors inline applies to exception classes in case of msvc only
84a36b99 Move data to functions
ab7c33ed Suppress checked iterator warnings
77258f60 fix FMT_CONSTEXPR_CHAR_TRAITS check for MSVC
d23e315e CI windows: add MSVC C++20 build
f085c3d7 use proper check for non-type template parameters
69bdc20a Workaround missing std::system on iOS, take 2
847aac43 Follow naming conventions in tests
39818e79 Cleanup core-test
0e6f989b __THROW warning fix for e2k (#2253)
1678ed62 simplify field::format() and spec_field::format(), fix typo
ca821982 use named arg with static name in compile-time API
ce6e7d86 use fixed_string to create named arg class with static name for _a literal
fc56af14 move fixed_string from compile.h to format.h
bb006f97 Replace TYPED_TEST_CASE with TYPED_TEST_SUITE
6956b10b Fix gcc 4.8 build
b4f9a058 Update gtest
8f9ddf45 Remove deprecated posix.h
dacd1356 Add module interface unit
d3c523e0 Export printf-related contexts from printf.h
2c25df08 Export replacement type_traits, too
553022dc Don't use std::system on iOS (#2248)
8a040d18 Cleanup core-test
064cac2b Bump version
5b2c740a Remove deprecated APIs
b9ab5c88 Remove printf.h dependency on ostream.h
c47f2112 Simplify data handling
54d3b171 Move more data out of basic_data
128f007b C++17: std::char_traits<>::{compare,length} is constexpr. (#2246)
841aad95 Move data out of basic_data
1d4199f4 fix udl_compiled_string with non-byte chars (e.g. wchar) (#2242)
c5d4fcb1 Appending a space to guarantee non-empty strftime() result. (#2244)
62714062 Fix a warning (#2233)
52bd62c7 Create separate dllexport marking points for clang and msvc. (#2229)
f4bbc54c Tag official API for module export (#2235)
d8910af8 Use qualified name lookup rather than ADL. (#2239)
92601141 Ranges wide strings support (#2236)
24c97515 Try to suppress MVSC warn of narrowing (#2230)
a1c6bfd7 Add a link to llvm diff
42eccac4 Fix clang warning about ignoring __declspec(dllexport) on basic_data<void> template instantitation definition (#2220)
aec50434 Update README.rst
0b411454 Update README.rst
00f3d16b Update docs
99c2f7a3 Allow including fmt/core.h in the header-only mode
b4415323 CI linux: add clang++-11 C++20 (with LLVM libc++) build
1dbadb65 CI linux: add clang++-11 C++20 build
09dbad47 CI linux: add missing build_type
e2facffe CI linux: remove excessive clang++-9 include
273d8865 Suppress redef warning of _CRT_SECURE_NO_WARNINGS if any. (#2218)
5a8bf1f6 Workaround hexfloat inconsistency on windows (#2205)
78776ee4 Fix a conditional expression is constant warning #2210 (#2211)
266107f5 constexpr uint128_wrapper (#2215)
2e0d64cf specify size for `prefixes` static data
95da4847 Fix a link
06b3a100 Add support for time points with arbitrary durations (#2208)
dac42f52 Inline fallback is_constant_evaluated
7c43f8b8 Don't use strlen at compile time (#2205)
c62e4c30 Make buffer_appender default-constructible when back_insert_iterator is
0d6b70d9 Install gcc 8
15c10b0c Add speech synthesis support
308510eb "Use" `fwrite` result (workaround for `warn_unused_result`)
afe23e7f Don't call fileno on NULL file in tests (#2196)
b49af043 Remove noexcept from file's move assignment
14848875 Fix: fmt::ostream cannot be moved while holding buffered data #2197 (#2198)
7d8c3401 Update pull_request_template.md
b966afcc Remove formattable
ec5315a9 Use strlen when possible in fallback basic_string_view
4f8778ba Inline basic_format_args's ctor
e2d87548 user-defined constructor
f7151d38 Extra flag to prevent Intel compiler with Clang front-end warning of 'unknown attribute no_sanitize'
0fb8ef8f Inline trivial argument handling functions
1b23e25f Simplify formattability check
35c71ff5 Only use -Og with optimizations disabled
243d8beb Enable minimal optimizations in debug mode
9b34681d Work around xl compiler bug when nvcc preprocesses this file (#2190)
4dc7170d Fix C++17 builds: (#2192)
9cb347b4 Simplify argument formatters
0f85a468 add default cases (#2186)
417e1cee Stop using deprecated UDL templates
f7e900e1 Simplify UDL definitions
d9661c8f Mark grouping as deprecated
14a2a64d Fix handling of formattable types with to_string_view (#2181)
6ae402fd Fix handling of types with to_string_view and formatter specialization (#2180)
a6408a3b Add args-test
1147782c Fix an ambiguous call to check caused by ADL (#2184)
2f3f3862 Fix harmless MSVS warning about using undefined _MANAGED symbol (#2183)
d0bded59 Fix MSVC /clr builds (#2179)
8308f52c Fix dynamic_format_arg_store::push_back comment
6151d0dc Fix the comment
5a1127b7 Don't wrap named arg in cref and clarify docs
b8ff3c18 optimize append (#2164)
c8d8b882 fix GCC 7,8,9 warning about unused but set parameter (#2177)
d2810187 Document ostream support limitation
bac14ef9 Simplify integer spec checking
8f9db3fc Make ubsan happy on empty format specs (#2175)
af567538 Bitpack integral prefixes
cdf877d4 Workaround missed optimization opportunity
eef4ba9c Optimize integer formatting without padding
a1ea8a82 Unbloat my heart
a457e163 Simplify integer formatter
05bc87a6 Optimize padding
605b6037 Optimize count_digits for powers of 2
85ba2716 Implement 128-bit count_digits in terms of count_digits_fallback
d9835737 spec -> specs
f9e0e904 Apply clang-format
60f5d244 Simplify arg_formatter
30e1302e Simplify on_format_specs
87c5cd46 Optimize parsing of argument ids
6a9016ea fix `formatted_size` with "compiled format" as argument (#2161)
6e1fc017 Move detail::truncating_iterator to fmt/compile.h
e718ec3e Make truncating_iterator an output_iterator (#2158)
772aeca3 Don't include <cassert>. (#2148) (#2152)
684b5b0e Fix fallback to runtime API from compile-time API (#2143)
d8b92543 use simplified `void_t` for all compilers other than gcc 4.x (#2160)
835b910e Add an is_formattable trait
57887403 Revert "Optimize handling of integer constants" (#2147)
640acba8 Print x.what() of FMT_THROW when exception is disabled (#2145)
d8e1c9f1 fix `fmt::get` for some GCC versions and legacy Clang (#2144)
2797588b Optimize handling of integer constants
e8eff3b8 Fix FMT_STATIC_THOUSANDS_SEPARATOR (#2142)
ab0f7d7f use const& for arguments
29cc8282 update chrono duration formatter (constness), use it in compile-test for specs checks
3f69af3a update wording in the error inside `arg_id_handler`, use `FMT_ASSERT` instead of `throw`
499047e1 fix incorrect indexing mode for named args, update tests
78c67157 prepare tests, fix incorrect handling of named args with simple `{}` replacement fields
b31bc2dc simplify `try_format_argument()`, make `manual_indexing_id()` a variable
95e1aa2d add support for manual indexing and named fields, add tests
7e72673d Improve width estimation (#2033)
13b117b5 Improve code point computation
ee0fed63 Fix handling of the + flag with locales (#2133)
c5979d56 Fix fmt::localtime formatting not working in wide-char string contexts
e6ef927e fmt::ptr: Support function pointers (#2131)
58aa0457 Fix ordering of install commands for CMake (#2122)
1980ca8c fix #2118: FMT_COMPILE did not work with tm formatter (#2119)
2a25e2bf Make ranges-test available with C++11 (#2114)
b0b56b43 fix #2116 (FMT_COMPILE requires exceptions enabled) (#2117)
373262f9 Update docs
ce519e93 Fix exception propagation from iterators (#2097)
acef0bb5 use gcc-10.2 instead of gcc-10.1 on CI, also fix one problem (#2110)
8bf28e6b Add support for s format specifier to bool (#2094) (#2109)
9c418bc4 Update README.rst
456efa46 add missing detail namespace (#2107)
80dc7cce Fixed format.h(1465): warning C4702: unreachable code (#2106)
7fd535c6 Cleanup 'L' handling
b4b8917c Update docs
e4f2cf45 Make 'L' a modifier
6972b5f3 Add build variable: FMT_MASTER_PROJECT (#2100)
ac352081 Install fmt/args.h (#2096)
532e846b Fix width computation in float formatter
f8c2f848 Fix handling of width when formatting int as char
0fe0b15e Fix handling of # in width computation
061e364b Document output_file
018688da Correct a typo on syntax.rst (documentation) (#2081)
9ec5592b Fix writing to stdout when redirected to NUL on Windows (#2080)
cdc5ef67 Remove fallback to inline specifier from FMT_CONSTEXPR(20) macro (#2075)
c9dd1eb9 Don't change charset
d09b5c14 Fix std::byte formatting with compile-time API (#2072)
bbd6ed5b Add support of most format_specs for formatting at compile-time (#2056)
a750bf3a Update api.rst
1256541d Fix formatting
4fa4c924 Add tests for FMT_ENFORCE_COMPILE_STRING, fix several errors (#2038)
aa89e380 add cwchar to format.h for std::fputws (#2073)
5a37e182 Disable warning about format string (#2067)
fa43fd14 Forward arguments to work with views (#2068)
3551f5d1 Workaround a gcc 10 -Warray-bounds bug (#2065)
e7376726 Remove an old mingw workaround (#2059)
25a41b80 Fix a link to Android.mk (#2057)
9293f707 Suppress gcc warning on privates-only class (#2053)
c20874c2 Reenable support for fallback formatter in join (#2040) (#2050)
5de0bc1d Add UDL as replacement for FMT_COMPILE (#2043)
a6fafe2f docs: use https for some links (#2051)
33f9a6d3 Fix handling of enums in to_string (#2036)
aabe0a84 simplify tests by reordering arguments of `EXPECT_EQ` (#2044)
1f4a76d2 Add a missing include (#2047)
4a6eadbd Make std::byte formattabe (#1981)
683a7450 fix formatting with empty compiled format string (#2042)
f43416e1 Add a link to contents from index
5a493560 Move some code from core.h to format.h where it is used
9ed0a981 Fix docs build
dac753b8 Basics of formatting at compile-time based on compile-time API (#2019)
119f7dc3 Truncate file by default
22a68d16 Don't emit trailing zeros by default
d0110b7e Update README.rst
3f4839ce Merge branch 'release' of github.com:fmtlib/fmt
7bdf0628 Update version
fc135511 Update changelog
926233bd Fix test
0683fa7d Bump version
6ce207b9 Fix formatting
07b1c1a1 Update changelog
58992761 Reintroduce ostream support to range formatters (#2014)
b8957f50 Fix an overflow in format_to_n (#2029)
df66516e Workaround an issue with mixing std versions in gcc (#2017)
a57baa69 Fix more linkage errors (#2011)
85534a13 Fix linkage errors when linking with a shared library (#2011)
a2fa5d62 Update changelog
cd300368 Fix more linkage errors (#2011)
d1ef29d6 Fix initialization of iterator_buffer (#1996)
5f41bb0f clang-format
a58a6b27 Add a newline
a036cc97 Reintroduce ostream support to range formatters (#2014)
38c7def4 Update clang version to 3.4 since there are ICEs on earlier ones
55336413 🆕 [CI] Test with C++14 in Windows 2019 (#2020)
55dfdd92 Update README.rst
2c734c9b Fix an overflow in format_to_n (#2029)
6cdd1be9 Update build.gradle for latest AGP (#2026)
bcc20b29 Implement compile-time checks by default
befd7d4a Always use FMT_STRING internally where possible [Issue #2002] (#2006)
f8640d40 Add more standards
f81c14aa Workaround an issue with mixing std versions in gcc (#2017)
5555651c Fix more linkage errors (#2011)
b268f881 detail::write in one more place relevant to printf with long argument… (#2016)
aa9b09a9 🐛 Cannot call non-constexpr function in constexpr context (#2010)
986fa004 Printf get container (#1982)
7abc3c01 Suppress a useless warning (#2004)
6d14f781 Fix linkage errors when linking with a shared library (#2011)
9534b9fe Refactor warning suppression
60dc2735 Simplify on_text
b5dac0f0 Reduce <algorithm> usage (#1998)
a07627b1 🐛 Implicit sign conversion warning in clang in c++17 and 20 modes (#2009)
1b8f499e 🔧 Silence useless cast warnings (#2008)
f428d286 Update README.rst
beb248b6 Optimize handling of large format strings
1936dddc fix gcc warning of missing override (#2001)
14f6bd0f Move one more headers to args.h
e01d26e1 Optimize includes
e528d919 Merge branch 'master' of github.com:fmtlib/fmt
48816772 Update signatures
3302fd10 use memchr for searching for '%' in printf format string (#1984)
4c2d6372 Update signatures
beaff396 Update signatures
ffa0a083 Use newer versions of Sphinx and Breathe
038057eb Document contexts
5bedcb66 Fix initialization of iterator_buffer (#1996)
2435ea41 Workaround MSVC mess
8c6215f5 Fix fmt/color.h
10ebe6cb Document color
1ac50fcb Suppress more bogus warnings
e098be8e Fix warning filtering
8cf0afaf Improve docs
e29f93e8 Suppress more bogus warnings
4e8d000f Suppress more bogus warnings
7787792e Fix re usage
6ee5e507 Fix imports
06ee32d1 Filter useless doxygen warnings
86bb7fe6 Add a missing import
959a9f5c Merge branch 'master' of github.com:fmtlib/fmt
4f7df299 Improve docs
b3ab0bc7 🎨 [CI] Specify the exact version of clang to use (#1991)
701ed6c8 Install deps in github actions instead of script
8f2131cf Document chrono
32c4af8f Document chrono
295a60ec Document chrono
a4fae96c Document chrono
263bb0e6 Document chrono
0506b328 Document chrono
4e426c19 Document chrono
9795d873 Update docs
2eb0be0b Remove debug code and fix bot contact
cd955798 Move less installation to actions
98639d0f Debug doc build
ab5e0632 Debug doc build
b123129f Dump the content of html dir
81d2b986 Print less command
7a0b1d57 Add key
9f0617cb Fix branch ref
75b07598 Chrono docs
dfbb6975 Remove travis config
5b3052f9 Switch doc build to github actions
506ff320 Fix build failure when not using fcntl with -Werror (#1990)
a30b279b Apply clang-format and tweak comments
6a2495c8 -Wattributes visibility warning with some GCC versions (#1975)
cba5970c Remove migrated build configs
689081d8 Merge branch 'release' of github.com:fmtlib/fmt
cc09f1a6 Update version
e4eb242c Update changelog and bump version
ce98e0c6 Fix fallback float formatter at assymetric bounds (#1976)
49544ea9 Fuzz fallback formatter
6b7bfed4 Fix fallback float formatter at assymetric bounds (#1976)
bcab36da Update CI config
1689e73e Move PR template
0103408a Update CI config
38a16ecb Move build config to github actions
205eb3a8 Update CI config
fe61b8c6 Update CI config
867b15d7 Update CI config
98cb9f99 Update CI config
95077d60 Update CI config
bc49f094 Update CI config
cef6dfb4 Update CI config
c8703ba4 Update CI config
ab4405be Update README.rst
78a55e28 Update CI config
d0a2494a Update cmake.yml
89d009ba Update cmake.yml
1f4ff47b Create cmake.yml
eb52ac7a 🆕 Enable -Wshadow in pedantic mode
e904e891 🎨 🐛 Rename all shadowed types and variables
771292c3 Remove sizeof from unused variable silencer (#1974)
86bf6045 Merge branch 'release' of github.com:fmtlib/fmt
5f7f7b95 Update version
5d3f0741 Update changelog and bump version
563cbb6c Add a macro to workaround clang/gcc ABI incompatibility on ARM
425778aa Fix ABI compatibility (#1961)
69a84198 Remove accidental parenthesis (#1968)
5c045049 Removed [-Wsign-conversion] warning in GCC
556a1cfb Instantiate to_decimal to make gcc lto happy (#1955)
28a8eae8 Cleanup
236fea1f Workaround bugs in gcc 8
e50ced88 Add a macro to workaround clang/gcc ABI incompatibility on ARM
112755cf Remove FMT_SAFEBUFFERS (#1966)
4081b2fe Fix ABI compatibility (#1961)
2d9311e8 Remove accidental parenthesis (#1968)
b3a4f28a Fix implicit signedness conversion warning (#1963)
97c88732 Allocator::max_size support in basic_memory_buffer (#1960)
bb68f608 Removed [-Wsign-conversion] warning in GCC
f4ca065c Range support
cb224eca Instantiate to_decimal to make gcc lto happy (#1955)
7977c2b4 Cleanup
e54eb676 Workaround bugs in gcc 8
4fe0b111 Update version
df4bd60f Bump version
764fb35e Always install the required version of breathe
e1bdc0ec Use the correct version of sphinx
39bde329 Tweak markup
204d299a Tweak markup
e0995b1c Update readme
4af178bd Remove outdated build config
aa41dc02 Remove unused script
6a77ea3c Tweak markup
62c72059 Update changelog
c10e3f7f Update changelog
e542e695 Update changelog
530cf316 Point to the release, not dev documentation
740385d6 Update changelog
cd465111 Update changelog
46291be3 Update changelog
90071c1d Update ChangeLog.rst
25293d7a Update ChangeLog.rst
5024742f Update ChangeLog.rst
0452a4e7 Update changelog
8de96817 Woraround bugs in gcc 8
47e16767 Simplify arg formatter
f0a42346 Move parsing optimization one level up
86287b8d Optimize common case in parse_format_specs
8924211f Update README.rst
525e7649 Update CONTRIBUTING.md
0ecb3d18 Optimize alignment parsing
97553078 Optimize format_uint
7446818f Simplify vformat_to
280b5612 Add option to force usage of inline namespaces
e57ec7d5 Merge vformat_to overloads
2a3f4de3 Remove iterator_category
27fdb4ea Unshadow floaty
297e0bad Apply clang-format
e3b4c22e Simplify is_output_iterator
da8278e1 Update changelog and bump version
17fba753 added position independent documentation (#1939)
71e705a2 Update README.rst
74654c8c Fix compilation for systems without fcntl.h (#1942)
f468b203 Avoid conversion from long long to size_t (#1935)
20d4f2e8 Fix handling of weird character types when parsing sign (#1932)
08370c39 Update README.rst
bd3c7925 Fix float fuzzer
8d3fd86d Merge branch 'master' of github.com:fmtlib/fmt
40347157 Update README.rst
37d738fa Update README.rst
271eff14 Make classes derived from buffer<T> final to silence the virtual destructor warning. (#1937)
010efc31 Add float fuzzer and cleanup
811c8b58 Add float fuzzer and cleanup
82c4e223 Cleanup fuzzing
63e40c96 Fix naming of fuzzers
2f448ed5 Fix fuzzer timeouts
af283059 Cleanup
48ea8193 Explain why assert-test is a separate test
1d112bdd Remove old test
5eb292a6 Update README.rst
7e56b6b6 Fix coding style and remove duplicate fuzzer
41d97e1e Fix a UB on ridiculously large precision
01c37e0a Added check for `-mbig-obj` and ref qualifier check (#1929)
a5e7e7db Fix handling of thousand separator (#1927)
bf19051a Optimize floating point formatting
3c13a88b Optimize floating point formatting
f6d75c53 Refactor write_float
e9c0b2d6 Merge write_float overloads
7eddbfed Cleanup exponent handling in write_float
b347b302 Update dynamic_formatter comment (#1923)
3541880e Fix integer overflow when using max int precision
7b50dc0b Don't exclude all detail symbols from docs
28052431 Fix the doc config
34f22e88 Cleanup CMake config
a18b3fbb Fix fixed precision handling when rounding (#1917)
72770357 Fix long lines in usage.md
7612c1ea Add reference to lhelper package manager in usage
b91d39f2 Get rid of float_writer
b4b64b9c Refactor float formatting
712abe40 Workaround a bug in gcc 7.5 (#1912)
af8a180a Make GetCachedPower test more precise
a581e9e5 Fix warning C4018: '<=': signed/unsigned mismatch (#1908)
05a28312 Update docs
4d0aa4d8 Update link
575f4018 Simplify FP formatting and follow coding conventions
6f3536f9 Move zero-check to an earlier branch (#1906)
90ef46df Fix dragonbox integration
3ae88147 Fix declaration
64179525 Improve dragonbox integration
79694d42 Fix WriteConsole signature
51f2e2ca Move nan test to where it belongs
68555fdb Make format-test not depend on color.h
63e0c354 Make dragonbox::to_decimal available in format.h
2213a711 Update README.rst
79ba37f3 Update README.rst
a905d8f7 Merge grisu-test into format-test
762c33a9 Simplify windows handling (#1903)
253d6315 Remove dependency on windows.h (#1900)
c156093f Fix carry in fallback_format
34179b33 Update format.h (#1898)
0651e459 Minor tweaks to get_cached_power
6c025520 Test that max_k is correctly defined
51f8d0cc Reuse log10_2_significand constant
1305cbeb Fix MSVC2019 error C2049 when compiling with /clr (#1897)
2d4fde3a Don't emit trailing zero for consistency with std::format
5fd89d50 Minor simplifications
605ce5e4 Simplify divisible_by_power_of_2
085171e7 Remove grisu_count_digits
aa729bf2 Remove dead code
aa2ddf9b Simplify Dragonbox integration
c1654ce4 Simplify uint32_or_64_or_128_t definition
33712dc0 Combine pragmas
e5942ac9 Tweak comments
aae7a133 Remove unused pragmas
6bcde9aa fmtlib/fmt#1882 (comment) (#1894)
bb0db5e5 clang-format
16410056 Optimize copy_str for counting_iterator
2591ab91 MSVC optimizations for count_digits. (#1890)
d5b8002d Update README.rst
821471e1 qkw: generalizing aliasing | using fmt library and it's features (#1888)
2e620ddb Small improvements that should have zero to negligible impact on the runtime (#1887)
2f7e0885 Disable range formatter if value type is not formattable (#1885)
c46a8de4 Simplify test
2696dc92 add forgotten template argument to make_format_args which made some u… (#1877)
0016da7a Don't generate zeros and fix UB on huge precision
ce3f7699 Merge intrinsic blocks
3b6248f6 Change formatting
2d9b1dd0 Fix sign mismatch
1f0600a2 Fix bug regarding FMT_SAFEBUFFERS
2ecdbb98 Fix a bug in ctzll
6f81ea15 Fix typo (and thus bug)
0c8ffe9b Implement Dragonbox (first version)
42699bf4 Fix msvc version of clz & clzll (#1880)
bc51a8df Disable fallthrough attributes for the Intel compilers on Linux and MacOS (#1879)
45da432d fix compiler warnings in public header files
d55e61f1 Improve FMT_ALWAYS_INLINE (#1878)
7e682752 Remove trailing zeros when using fallback formatter (#1873)
1d696dc2 Handle exotic character types in compilation
f674434a Add format_to_n overload that accepts FMT_COMPILE (from #1767) (#1869)
5b5a5971 Fix handling of wide alignment
f80ed64d Update README.rst
38139664 Simplify fallback format
dce8e49b Handle float in fallback formatter
78b59443 Spelling
f233b56c Don't generate insignificant digits
595902f8 Update test
4f2ee892 Use built-in FP formatter for any precision
58a044be Use built-in FP formatter for any precision
efe3694f Macro tweak and clang-format
9f312fe8 Implement fallback FP formatting with given precision (#1526)
fb289cf5 Fix coding conventions
86f0a704 Fix formatting
bff4d18e Add color format_to overloads * Fix variable size basic_memory_buffer colorization * Fix an unused arguments warning on GCC that blocks the CI otherwise * Ref #1842 * Ref #1593
f19b8885 Fixed a warning in mingw32/mingw64 (#1860)
f8e00a08 NOMINMAX not handled properly (#1855)
6cccdc24 Fix move constructor (#1844)
69902c17 Allow use of <fcntl.h> in Linux when __has_include is not available (#1848)
1edd38b9 Add append mode. (#1847)
e66ba169 Added build2 usage instructions. (#1838)
f39e6fb6 Add formatters for chrono::time_point<system_clock> (#1837)
77b627be Fix bogus MSVC warnings (#1825)
5dff01d3 Add complex tests
d16d585e Update signatures
c7e6d8af Fix usage of override (#1836)
92bff2fe Revert "Add missing includes"
a0dcfbc5 Add ptr to docs
1651b2d4 Fix detail::write with fallback formatter (#1829)
06895a76 Add missing includes
92a448a0 Apply clang-format
6be65446 Fixing buffer_appender's ++ slicing (#1822)
951e0d23 CMakeLists.txt: Added Wundef warning to clang and gcc. (#1823)
f9f02df7 CMakeLists.txt: Clang-warnings: removed -Wno-sign-conversion (#1817)
76e97dc4 Eliminate shadowed variable warnings on intel (#1816)
e204df0e nvcc compiler should be EDG-based, but fails test (#1818)
1c8bb547 small changes to reduce clang-9 warnings (#1808)
4b69c787 fix: warning C4100: unreferenced formal parameter (#1814)
fb0aeb82 fix: disabled UDL templates for PGI (#1811) (#1812)
54daa086 Add dynamic width support to FMT_COMPILE (#1809)
6fb7c6fb Workaround a bug in gcc10 (#1810)
16985fda Update README.rst
1378ddae Update README.rst
4fd95e4b Don't remove trailing zeros with #
e06ae322 Avoid warnings on functions with external linkage that don't have declarations
7fc3d1f5 Add override to grow
065889a5 Use correct capacity in iterator_buffer (#1807)
d0dd6786 Adding convenience append(range)
0e7cef06 Merge commit 'c13f79e0'
e2c8c455 Update README.rst
e4c954ff Update README.rst
c13f79e0 Merge release branch
d7921d64 Update README.rst
4a4fc225 Update changelog
61602a75 Remove -Wno-shadow
2f8fc29e Update README.rst
717b226b include/fmt/format.h: explicit cast to std::size_t for parameter to buffer.resize() in order to get rid of warning 'implicit conversion changes signedness:' in clang-8 (#1802)
2a69f567 Tweak buffer size
ea769338 Simplify ostream
5413713c Remove unused function
57f46242 Increase the default buffer size
0b6e7cc6 Update README.rst
e587adb4 Simplify count_digits
279d698e Fix handling of default alignmment with locale (#1801)
76cfb50b Test complex formatter
20829120 Optimize count_digits
8d9ab967 Cut a few cycles from count_digits
73434493 Simplify ostream_params
2a47a1e4 Update README.rst
7c4c5c79 Make buffer size configurable
f0b84da5 Don't use 128 bit integers with clang-cl (#1800)
a3dfd6f9 Workaround a bug in msvc
51d05521 Workaround broken numeric_limites, part 2 (#1787)
21c8b5c1 Report error on missing named argument (#1796)
d82fdcc9 Fix handling of iterators in locale-specific formatting (#1782)
633213d9 Merge release branch
e8f2580a Bump version
6cefe55a Update changelog
64e2da15 Update README.rst
1c8c810f Update README.rst
c2399ccf Update README.rst
a7c5db06 Update README.rst
a4c22acd Update README.rst
0c1f4b5a Update README.rst
63b422ee Update README.rst
26e81a67 Update README.rst
de5fc6af Update README.rst
9c2edfd1 Partially revert 638db5 because it breaks the doc build
810357c0 Document color
0a7032a4 Update README.rst
95d3abf9 Make format_to_n part of the core API
98626093 Correct the locale format specifier in api.rst (#1792)
47f8d7a3 Make formatted_size part of the core API
46a63b70 Update docs
430f393d Disabled __attribute__((deprecated)) usage for LCC (#1790)
febffa4e Make join() handle non-const-only begin/end ranges (#1786)
d69e2da2 Fix apidoc
ce73ea37 Reorder functions
d39d661b Workaround broken numeric_limits (#1725)
c228bfe8 Improve docs
38ce19f7 Update README.rst
d11849bc Add FMT_REDUCE_INT_INSTANTIATIONS flag (#1781)
c08518a2 Move make_args_checked to the public API
e2837084 Add a color section
9f0c0033 Simplify format string checks
d615137c Improve handling of buffer iterator
26b47b6f Bump tested CMake version to 3.18
7a01c9c5 Update README.rst
b17d5c4f Fix a regression in handling digit separators (#1782)
eb90da2e Type erase output iterators
9d3cd0af Type erase output iterators
18024853 Fix compatibility with CMake 3.4 (#1779)
f5d4215b Trying to clear ambiguous compile time claims (#1775)
c26349f4 Improve error reporting
f4b11ef6 Add a short anchor
0097cf11 Report unformattable type name more prominently
8fa20b47 dev -> latest
a03bd3dd Autodetect MSVC static runtime (#1770)
c108ee1d Clarify a comment
a8074a86 Update README.rst
5f629548 Update README.rst
bd903f96 Clarify precedence
16cac46a Improve handling of streamable and convertible to bool types (#1766)
415cd519 direct_buffered_file -> ostream
e1bfb596 Fix handling of code units in compile
ba8d98cb Cleanup direct_buffered_file
04a1f6e9 Improve handling of single code units in compile
e4f57bfd Add an overload of write for buffer_appender
d8704681 Make append work with fixed-size buffer
e8ec09ae Cleanup core-test
a2c4fed9 Double buffering no more
36406509 Add a fixed buffer
60c43e87 Apply clang-format
b998e0f3 Reduce symbol sizes and simplify iterator use
c5adfc51 Update README.rst
c4ad94ce Update README.rst
c1429651 Fix image source link
638db5ca Use Cmake to find Python and Sphinx-doc.
c0905697 Update readme
1efdb2dd Simplify readme
dc69afad Cleanup example
445f5d39 Break long lines
23063c34 Update readme
f57b6257 Move PR template to the top level

git-subtree-dir: externals/fmt
git-subtree-split: 9e8b86fd2d9806672cc73133d21780dd182bfd24
chenyt9 pushed a commit to MotorolaMobilityLLC/external-fmtlib that referenced this pull request May 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants