Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
02f0ab20
Unverified
Commit
02f0ab20
authored
Oct 07, 2022
by
Randolf J
Committed by
GitHub
Oct 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update charconv.cc
parent
8317b9a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
absl/strings/charconv.cc
+2
-1
No files found.
absl/strings/charconv.cc
View file @
02f0ab20
...
@@ -347,7 +347,8 @@ bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative,
...
@@ -347,7 +347,8 @@ bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative,
// https://bugs.llvm.org/show_bug.cgi?id=37778
// https://bugs.llvm.org/show_bug.cgi?id=37778
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86113
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86113
constexpr
ptrdiff_t
kNanBufferSize
=
128
;
constexpr
ptrdiff_t
kNanBufferSize
=
128
;
#if defined(__GNUC__) || (defined(__clang__) && __clang_major__ < 7)
#if (defined(__GNUC__) && !defined(__clang__)) || \
(defined(__clang__) && __clang_major__ < 7)
volatile
char
n_char_sequence
[
kNanBufferSize
];
volatile
char
n_char_sequence
[
kNanBufferSize
];
#else
#else
char
n_char_sequence
[
kNanBufferSize
];
char
n_char_sequence
[
kNanBufferSize
];
...
...
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