chore: update code style in ZoneCodeGenerator entrypoint

This commit is contained in:
Jan
2025-04-20 09:45:32 +02:00
parent 0f3ee1fa79
commit 785cf8c025
5 changed files with 76 additions and 91 deletions
+2 -2
View File
@@ -2,6 +2,6 @@
int main(const int argc, const char** argv)
{
const ZoneCodeGenerator zoneCodeGenerator;
return zoneCodeGenerator.Run(argc, argv);
auto zoneCodeGenerator = ZoneCodeGenerator::Create();
return zoneCodeGenerator->Run(argc, argv);
}