std::string's copy constructor/assignment operator may throw a exception.
| 6132 | |
| 6133 | // std::string's copy constructor/assignment operator may throw a exception. |
| 6134 | scalar_parser(const scalar_parser&) = default; |
| 6135 | scalar_parser& operator=(const scalar_parser&) = default; |
| 6136 | |
| 6137 | scalar_parser(scalar_parser&&) noexcept = default; |