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 Aug 5, 2024
1 parent 95d4000 commit 09d8d96
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 09d8d96

Please sign in to comment.