Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When compiling without `to_chars` support enabled (that is, `__cpp_lib_to_chars >= 201611L` is false), `string.cpp` uses `std::back_inserter`, which requires `<iterator>` be included. This dependency is missing and could cause some compilers to fail (e.g., Xcode 16.1 building under C++23). This PR adds the necessary include.
- Loading branch information