mirror of
https://github.com/boostorg/program_options.git
synced 2026-01-19 04:22:15 +00:00
ProgramOptions: added a couple of missing std:: namespace qualifiers
[SVN r57984]
This commit is contained in:
@@ -21,7 +21,7 @@ namespace boost { namespace program_options {
|
||||
{
|
||||
std::vector<std::string> result;
|
||||
|
||||
string::const_iterator i = input.begin(), e = input.end();
|
||||
std::string::const_iterator i = input.begin(), e = input.end();
|
||||
for(;i != e; ++i)
|
||||
if (!isspace((unsigned char)*i))
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user