Skip to content

Commit

Permalink
whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hant-hub committed Dec 28, 2024
1 parent 0f5c6d4 commit fd40b29
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions library/testing/TestSDKEngineRecreation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ int TestSDKEngineRecreation(int argc, char* argv[]) {
std::string filename = "TestSDKEngineRecreation";
std::string interactionFilePath = std::string(argv[2]) + "../../" + filename + ".log";
f3d::engine* eng = new f3d::engine(f3d::engine::create(false));
eng->getInteractor().start(1/30, [eng](){ eng->getInteractor().stop(); });
eng->getInteractor().start(1 / 30, [eng]() { eng->getInteractor().stop(); });
delete eng;
for (int i = 0; i < 5; i++) {
for (int i = 0; i < 5; i++)
{
f3d::engine* eng2 = new f3d::engine(f3d::engine::create(false));
eng2->getInteractor().playInteraction(interactionFilePath);
}

return EXIT_SUCCESS;
}

0 comments on commit fd40b29

Please sign in to comment.