Skip to content

Commit

Permalink
amalgamate: fix include of <charconv>
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Jun 30, 2024
1 parent a95b20e commit 761a6c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog/current.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

- Fix [rapidyaml#445](https://github.com/biojppm/biojppm/pull/445): Amalgamate: fix include of `<charconv>`.
- Add `bool from_chars(csubstr s, fmt::overflow_checked_<T> *wrapper)`. There was already is a function receiving `&wrapper`, but `*wrapper` was missing for use with generic code.
- Update fast_float to v6.1.1 ([PR#136](https://github.com/biojppm/c4core/pull/136))
10 changes: 5 additions & 5 deletions tools/amalgamate.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ def amalgamate_c4core(filename: str,
#define C4CORE_EXPORTS
#endif
"""
required_gcc4_8_include = """// these includes are needed to work around conditional
// includes in the gcc4.8 shim
required_gcc4_8_include = """// (amalgamate) these includes are needed to work around
// conditional includes in the gcc4.8 shim
#include <cstdint>
#include <type_traits>
#include <cstring>
"""
required_charconv_include = """// this include is needed to work around conditional
// includes in charconv.hpp
#if __cplusplus >= 201703L
required_charconv_include = """// (amalgamate) this include is needed to work around
// conditional includes in charconv.hpp
#if (defined(_MSVC_LANG) && (_MSVC_LANG >= 201703L)) || (__cplusplus >= 201703L)
#include <charconv>
#endif
"""
Expand Down

0 comments on commit 761a6c0

Please sign in to comment.