Searched refs:lastNotWhitespace (Results 1 – 1 of 1) sorted by relevance
64 const size_t lastNotWhitespace = str.find_last_not_of(" \t\n\r"); in runCommand() local65 if (lastNotWhitespace != std::string::npos) { in runCommand()66 str = str.substr(0, lastNotWhitespace + 1); in runCommand()