Skip to content

1.1.0

Compare
Choose a tag to compare
@vitaut vitaut released this 06 Mar 16:33
· 5830 commits to master since this release
  • Added BasicArrayWriter, a class template that provides operations for formatting and writing data into a fixed-size array (#105 and #122):
char buffer[100];
fmt::ArrayWriter w(buffer);
w.write("The answer is {}", 42);

You can now install C++ Format with make install command.

The android-ndk-example repository provides and example of using C++ Format with Android NDK:

image

  • Improved documentation of SystemError and WindowsError (#54).
  • Various code improvements (#110, #111 #112). Thanks to @CarterLi.
  • Improved compile-time errors when formatting wide into narrow strings (#117).
  • Fixed BasicWriter::write without formatting arguments when C++11 support is disabled (#109).
  • Fixed header-only build on OS X with GCC 4.9 (#124).
  • Fixed packaging issues (#94).
  • Fixed warnings in GCC, MSVC and Xcode/Clang (#95, #96 and #114).
  • Added changelog (#103).