feat: remove default value from internal src

This commit is contained in:
ToruNiina
2020-09-29 01:40:49 +09:00
parent a6d38c1ec0
commit 0fec125688
2 changed files with 11 additions and 6 deletions

View File

@@ -339,7 +339,7 @@ get(const basic_value<C, M, V>& v)
}));
}
std::transform(ar.cbegin(), ar.cend(), container.begin(),
[](const value& x){return ::toml::get<value_type>(x);});
[](const basic_value<C, M, V>& x){return ::toml::get<value_type>(x);});
return container;
}