parse_string now successfully returns an array of format_node objects

This commit is contained in:
2021-11-19 18:27:46 +01:00
parent bb24f86d5d
commit c3ed767e82
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ int main() {
std::cout << std::endl;
constexpr auto ast = detail::parse_string<"Test: {:16.8} {:03.5} {:08.2}">();
constexpr auto ast = detail::parse_string<"Test: {:16.8f} {:03.5} {:08.2}">();
static_assert(ast.is_valid);
for (const auto& format_node : ast.result) {