github eliaskosunen/scnlib v1.1
1.1

latest releases: v4.0.1, v4.0.0, v3.0.2...
4 years ago
  • Add support for scanning 8-bit integers ((un)signed char, (u)int8_t),
    and characters (char, wchar_t) as integers
int8_t i1, i2;
char c1, c2;
auto ret = scn::scan("1 2 3 4", "{} {:c} {} {:i}", i1, i2, i3, i4);
// ret == true
// i1 == 1
// i2 == '2'
// c1 == '3'
// c2 == 4
  • Fix usage of external fast_float in CMake (#53, thanks @xvitaly (Vitaly Zaitsev))
  • Fix tests on big endian architectures (#54)
  • Fix alignment issues with small_vector on 32-bit architectures

Full Changelog: v1.0...v1.1

Don't miss a new scnlib release

NewReleases is sending notifications on new releases.