Skip to content

Commit

Permalink
toml11 4.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Dec 17, 2024
1 parent bd447b1 commit e370ccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/convert-json-toml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void parsed_main(std::string jsonOrToml)
using SL = json::SupportedLanguages;
case SL::JSON: {
auto asToml = json::jsonToToml(config);
std::cout << asToml;
std::cout << json::format_toml(asToml);
}
break;
case SL::TOML:
Expand Down

0 comments on commit e370ccc

Please sign in to comment.