Skip to content

Commit 4e17f07

Browse files
committed
style: formatting
1 parent 506e57c commit 4e17f07

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

inkcpp_python/pybind11

Submodule pybind11 updated 297 files

unreal/inkcpp/Source/inkcpp_editor/Private/InkAssetFactory.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,8 @@ UObject* UInkAssetFactory::FactoryCreateFile(
312312
// Note: on Windows, if std::system()'s argument begins with '"', the outer
313313
// pair of quotes is stripped, breaking paths with spaces. Emitting the first
314314
// character outside the quoted section works around this.
315-
cmd << inklecate_cmd[0] << "\"" << (inklecate_cmd.c_str() + 1) << "\""
316-
<< " -o \"" << json_path.string() << "\""
317-
<< " \"" << story_path.string() << "\" 2>&1";
315+
cmd << inklecate_cmd[0] << "\"" << (inklecate_cmd.c_str() + 1) << "\"" << " -o \""
316+
<< json_path.string() << "\"" << " \"" << story_path.string() << "\" 2>&1";
318317
const std::string cmd_str = cmd.str();
319318
int result = std::system(cmd_str.c_str());
320319
if (result != 0) {

0 commit comments

Comments
 (0)