refactor: remove debug output

This commit is contained in:
3lswear
2022-01-30 12:35:42 +03:00
parent 744c84f544
commit 668566a462
2 changed files with 19 additions and 20 deletions

View File

@@ -43,6 +43,6 @@ TOMLMap *parse(void)
std::string filename = "config/simple.toml";
config::TOMLParser parser(filename);
TOMLMap *root = parser.parse();
config::display(root);
/* config::display(root); */
return (root);
}