Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
v0id-strike committed Jan 9, 2025
1 parent 1fdad26 commit bec0cc1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion library/src/interactor_impl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,10 @@ interactor& interactor_impl::initCommands()
std::string aliasCommand;
for (size_t i = 1; i < args.size(); ++i)

Check warning on line 776 in library/src/interactor_impl.cxx

View check run for this annotation

Codecov / codecov/patch

library/src/interactor_impl.cxx#L775-L776

Added lines #L775 - L776 were not covered by tests
{
if (i > 1) aliasCommand += " ";
if (i > 1)

Check warning on line 778 in library/src/interactor_impl.cxx

View check run for this annotation

Codecov / codecov/patch

library/src/interactor_impl.cxx#L778

Added line #L778 was not covered by tests
{
aliasCommand += " ";

Check warning on line 780 in library/src/interactor_impl.cxx

View check run for this annotation

Codecov / codecov/patch

library/src/interactor_impl.cxx#L780

Added line #L780 was not covered by tests
}
aliasCommand += args[i];

Check warning on line 782 in library/src/interactor_impl.cxx

View check run for this annotation

Codecov / codecov/patch

library/src/interactor_impl.cxx#L782

Added line #L782 was not covered by tests
}

Expand Down

0 comments on commit bec0cc1

Please sign in to comment.