Fix thinko.

From-SVN: r35838
This commit is contained in:
Gabriel Dos Reis 2000-08-21 11:29:16 +00:00
parent 4b6243ef72
commit e66e4fa265
1 changed files with 2 additions and 2 deletions

View File

@ -48,10 +48,10 @@ namespace std {
//
inline int abs(int i)
{ return i < 0 ? i : -i; }
{ return i > 0 ? i : -i; }
inline long abs(long i)
{ return i < 0 ? i : -i; }
{ return i > 0 ? i : -i; }
//
// float