diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-21 16:04:40 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-06-21 16:04:40 +0000 |
commit | 858c6b3c79707babdbcf533664ffc5f79944e3b4 (patch) | |
tree | 12b821f1e28ef7301008df20d8a6466460db8764 /libstdc++-v3/include/tr1 | |
parent | bcd373f75dd3f1418545f1eeecae5ad6da0c3a29 (diff) | |
download | gcc-858c6b3c79707babdbcf533664ffc5f79944e3b4.tar.gz |
* include/c_global/climits, include/tr1/climits: Add parentheses.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137002 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/tr1')
-rw-r--r-- | libstdc++-v3/include/tr1/climits | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/include/tr1/climits b/libstdc++-v3/include/tr1/climits index 9c7b0c5807c..62a3d1464f5 100644 --- a/libstdc++-v3/include/tr1/climits +++ b/libstdc++-v3/include/tr1/climits @@ -1,6 +1,6 @@ // TR1 climits -*- C++ -*- -// Copyright (C) 2006, 2007 Free Software Foundation, Inc. +// Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -37,7 +37,7 @@ #include <climits> #ifndef LLONG_MIN -#define LLONG_MIN -__LONG_LONG_MAX__ - 1 +#define LLONG_MIN (-__LONG_LONG_MAX__ - 1) #endif #ifndef LLONG_MAX @@ -45,7 +45,7 @@ #endif #ifndef ULLONG_MAX -#define ULLONG_MAX __LONG_LONG_MAX__ * 2ULL + 1 +#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1) #endif #endif // _GLIBCXX_TR1_CLIMITS |