+2008-06-21 Jonathan Wakely <jwakely.gcc@gmail.com>
+
+ * include/c_global/climits, include/tr1/climits: Add parentheses.
+
2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate.
// -*- C++ -*- forwarding header.
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-// 2006, 2007
+// 2006, 2007, 2008
// Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
#define _GLIBCXX_CLIMITS 1
#ifndef LLONG_MIN
-#define LLONG_MIN -__LONG_LONG_MAX__ - 1
+#define LLONG_MIN (-__LONG_LONG_MAX__ - 1)
#endif
#ifndef LLONG_MAX
#endif
#ifndef ULLONG_MAX
-#define ULLONG_MAX __LONG_LONG_MAX__ * 2ULL + 1
+#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1)
#endif
#endif
// 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
#include <climits>
#ifndef LLONG_MIN
-#define LLONG_MIN -__LONG_LONG_MAX__ - 1
+#define LLONG_MIN (-__LONG_LONG_MAX__ - 1)
#endif
#ifndef LLONG_MAX
#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