Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c764e1bd
Commit
c764e1bd
authored
Jun 21, 2008
by
Jonathan Wakely
Committed by
Jonathan Wakely
Jun 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/c_global/climits, include/tr1/climits: Add parentheses.
From-SVN: r137002
parent
830b4fec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/include/c_global/climits
+3
-3
libstdc++-v3/include/tr1/climits
+3
-3
No files found.
libstdc++-v3/ChangeLog
View file @
c764e1bd
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.
...
...
libstdc++-v3/include/c_global/climits
View file @
c764e1bd
// -*- 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 @@
...
@@ -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 @@
...
@@ -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
libstdc++-v3/include/tr1/climits
View file @
c764e1bd
// 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 @@
...
@@ -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 @@
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment