Fix typo.

llvm-svn: 190857
This commit is contained in:
Joerg Sonnenberger 2013-09-17 08:46:53 +00:00
parent a7f35c06dc
commit 8092c957d2
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ inline
int
as_integer(const string& func, const string& s, size_t* idx, int base )
{
// Use long as no Stantard string to integer exists.
// Use long as no Standard string to integer exists.
long r = as_integer_helper<long>( func, s, idx, base, strtol );
if (r < numeric_limits<int>::min() || numeric_limits<int>::max() < r)
throw_from_string_out_of_range(func);