2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-27 07:02:12 +00:00

boost::optional -> std::optional

This commit is contained in:
Zach Laine
2019-10-30 20:24:30 -05:00
parent f3c33af01b
commit f802b967da
11 changed files with 308 additions and 261 deletions

View File

@@ -36,7 +36,7 @@ TEST(parse, test_parse_yaml)
errors.push_back(error);
};
boost::optional<boost::json::value> result =
std::optional<boost::json::value> result =
boost::json::parse(str, report_error);
for (auto const & error : errors) {