* include/c_global/climits, include/tr1/climits: Add parentheses.
From-SVN: r137002
This commit is contained in:
parent
830b4fecd5
commit
c764e1bde2
3 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
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.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// -*- 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
|
||||
|
@ -51,7 +51,7 @@
|
|||
#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
|
||||
|
@ -59,7 +59,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef ULLONG_MAX
|
||||
#define ULLONG_MAX __LONG_LONG_MAX__ * 2ULL + 1
|
||||
#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue