Skip to content

Commit

Permalink
Qualified std::tolower in Clara.
Browse files Browse the repository at this point in the history
Fixes #543
  • Loading branch information
philsquared committed Mar 10, 2017
1 parent 5dd0639 commit 5d6c744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/external/clara.h
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ namespace Clara {
_dest = _source;
}
char toLowerCh(char c) {
return static_cast<char>( ::tolower( c ) );
return static_cast<char>( std::tolower( c ) );
}
inline void convertInto( std::string const& _source, bool& _dest ) {
std::string sourceLC = _source;
Expand Down

0 comments on commit 5d6c744

Please sign in to comment.