#include #include #include int main() { using namespace toml::literals::toml_literals; const auto data = R"(windows = "defines min and max as a macro")"_toml; std::cout << toml::find(data, "windows") << std::endl; return 0; }