| 8890 | public: |
| 8891 | |
| 8892 | TOML_NODISCARD_CTOR |
| 8893 | parse_result() noexcept // |
| 8894 | : err_{ true } |
| 8895 | { |
| 8896 | ::new (static_cast<void*>(storage_.bytes)) parse_error{ std::string{}, source_region{} }; |
| 8897 | } |
| 8898 | |
| 8899 | TOML_NODISCARD_CTOR |
| 8900 | explicit parse_result(toml::table&& tbl) noexcept // |