mirror of git://gcc.gnu.org/git/gcc.git
* include/c_global/climits, include/tr1/climits: Add parentheses.
From-SVN: r137002
This commit is contained in:
parent
830b4fecd5
commit
c764e1bde2
|
|
@ -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>
|
2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// -*- C++ -*- forwarding header.
|
// -*- C++ -*- forwarding header.
|
||||||
|
|
||||||
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
||||||
// 2006, 2007
|
// 2006, 2007, 2008
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
#define _GLIBCXX_CLIMITS 1
|
#define _GLIBCXX_CLIMITS 1
|
||||||
|
|
||||||
#ifndef LLONG_MIN
|
#ifndef LLONG_MIN
|
||||||
#define LLONG_MIN -__LONG_LONG_MAX__ - 1
|
#define LLONG_MIN (-__LONG_LONG_MAX__ - 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LLONG_MAX
|
#ifndef LLONG_MAX
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef ULLONG_MAX
|
#ifndef ULLONG_MAX
|
||||||
#define ULLONG_MAX __LONG_LONG_MAX__ * 2ULL + 1
|
#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
// TR1 climits -*- C++ -*-
|
// 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
|
// 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
|
// software; you can redistribute it and/or modify it under the
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
#include <climits>
|
#include <climits>
|
||||||
|
|
||||||
#ifndef LLONG_MIN
|
#ifndef LLONG_MIN
|
||||||
#define LLONG_MIN -__LONG_LONG_MAX__ - 1
|
#define LLONG_MIN (-__LONG_LONG_MAX__ - 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LLONG_MAX
|
#ifndef LLONG_MAX
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef ULLONG_MAX
|
#ifndef ULLONG_MAX
|
||||||
#define ULLONG_MAX __LONG_LONG_MAX__ * 2ULL + 1
|
#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // _GLIBCXX_TR1_CLIMITS
|
#endif // _GLIBCXX_TR1_CLIMITS
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue