fix for old C++ standard in test.

This commit is contained in:
IRainman 2026-01-21 02:38:13 +03:00
parent 155be7d3d3
commit 306f7ea4f3

View File

@ -4,11 +4,11 @@
#include "fast_float/fast_float.h" #include "fast_float/fast_float.h"
#include <iostream> #include <iostream>
#include <string_view> #include <string>
#include <vector> #include <vector>
struct test_data { struct test_data {
const std::string_view input; const std::string input;
const bool expected_success; const bool expected_success;
const double expected_result; const double expected_result;
}; };