Commit e66e4fa2 by Gabriel Dos Reis

Fix thinko.

From-SVN: r35838
parent 4b6243ef
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment