macro processor: remove unnecessary `std` namespace specifier

issue#70
Houtan Bastani 2019-08-06 17:02:25 -04:00
parent fcb1982de8
commit ddd4361887
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 1 additions and 1 deletions

View File

@ -706,7 +706,7 @@ Variable::eval()
{ {
retvals += orig_string.substr(it - 1, 1); retvals += orig_string.substr(it - 1, 1);
} }
catch (const std::out_of_range &ex) catch (const out_of_range &ex)
{ {
throw StackTrace("variable", "Index out of range", location); throw StackTrace("variable", "Index out of range", location);
} }