Warning suppression for GCC from Pierre Barbier de Reuille

<pierre.barbier-at-cirad.fr>


[SVN r19437]
This commit is contained in:
Dave Abrahams
2003-08-04 15:52:51 +00:00
parent 25935cda40
commit 80a6db56c1

View File

@@ -175,7 +175,7 @@ namespace boost
# ifdef LONGLONG_MIN
return LONGLONG_MIN;
# else
return -9223372036854775808LL; // hope this is portable
return -( 9223372036854775807LL )-1; // hope this is portable
# endif
}
};