Skip to content
Snippets Groups Projects
Commit 28bc9c95 authored by Victor Poughon's avatar Victor Poughon
Browse files

REFAC: prefer std::string::pop_back (C++11)

parent d67670b5
Branches
Tags
No related merge requests found
......@@ -146,7 +146,7 @@ DocExampleStructure::GenerateCLExample( unsigned int exId )
res = oss.str();
// Suppress last added space
res.erase( res.size()-1, 1);
res.pop_back();
return res;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment