Skip to content

Commit

Permalink
add const to parse param
Browse files Browse the repository at this point in the history
  • Loading branch information
sytelus committed Mar 23, 2017
1 parent 003000f commit ad107c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MavLinkCom/MavLinkTest/Commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@ bool FtpCommand::matches(const std::string& pattern, const std::string& name) co
return p == ps;
}

bool NshCommand::Parse(std::vector<std::string>& args)
bool NshCommand::Parse(const std::vector<std::string>& args)
{
if (args.size() > 0) {
std::string command = args[0];
Expand Down

0 comments on commit ad107c0

Please sign in to comment.