Code Cleanup

- Removed unnecessary use of the scope resolution operator.
This commit is contained in:
Paul Beckingham
2009-11-17 22:34:28 -05:00
parent 3214dc5d37
commit fbb217538e
18 changed files with 75 additions and 75 deletions

View File

@@ -178,7 +178,7 @@ void Duration::parse (const std::string& input)
if (! isdigit (lower_input[i]) &&
i == length - 1)
{
int number = ::atoi (lower_input.substr (0, i).c_str ());
int number = atoi (lower_input.substr (0, i).c_str ());
switch (lower_input[length - 1])
{