Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegmd committed Dec 20, 2020
1 parent 3de6972 commit 82bbecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reverse/Scripting.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool Scripting::Execute(const std::string& aCommand, std::string& aReturnMessage
const auto argsStart = aCommand.find_first_of('(');
const auto argsEnd = aCommand.find_first_of(')');

const auto funcName = aCommand.substr(0, argsStart);
auto funcName = aCommand.substr(0, argsStart);
trim(funcName);

std::string s = aCommand.substr(argsStart + 1, argsEnd - argsStart - 1);
Expand Down

0 comments on commit 82bbecb

Please sign in to comment.