Skip to content

Commit 4a2d37c

Browse files
committed
fix: disable json ident
1 parent 4cc3aef commit 4a2d37c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/dumpers/schemas/json_exporter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ void Dump(const std::vector<IntermediateSchemaEnum>& enums, const std::vector<In
228228
root["enums"] = enumsArray;
229229

230230
std::ofstream output(Globals::outputPath / "schemas.json");
231-
output << root.dump(1);
231+
output << root.dump(-1);
232232

233233
spdlog::info("Wrote schemas.json ({} classes, {} enums)", classesArray.size(), enumsArray.size());
234234
}

0 commit comments

Comments
 (0)