More fixes for int64_t != long long.

This commit is contained in:
Allison Vacanti
2021-02-04 19:02:58 -05:00
parent 74d19a8e16
commit 4bdc27de8c

View File

@@ -27,7 +27,7 @@ void test_basic()
vals.set_int64("Int", 32);
vals.set_float64("Float", 34.5);
vals.set_string("String", "string!");
vals.set_value("IntVar", nvbench::named_values::value_type{36ll});
vals.set_value("IntVar", {nvbench::int64_t{36}});
std::vector<std::string> names{"Float", "Int", "IntVar", "String"};