| 12923 | char* const max_write_pos = buf + (buf_size - std::size_t{ 1 }); // allow for null terminator |
| 12924 | |
| 12925 | TOML_NODISCARD_CTOR |
| 12926 | error_builder(std::string_view scope) noexcept |
| 12927 | { |
| 12928 | concatenate(write_pos, max_write_pos, "Error while parsing "sv); |
| 12929 | concatenate(write_pos, max_write_pos, scope); |
| 12930 | concatenate(write_pos, max_write_pos, ": "sv); |
| 12931 | } |
| 12932 | |
| 12933 | template <typename T> |
| 12934 | void append(const T& arg) noexcept |
nothing calls this directly
no test coverage detected