Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
a2681aab
Commit
a2681aab
authored
May 31, 2022
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Debug ppc failure
parent
bfc57673
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
include/fmt/format.h
include/fmt/format.h
+4
-2
No files found.
include/fmt/format.h
View file @
a2681aab
...
@@ -1318,8 +1318,10 @@ template <int> constexpr int check_digits();
...
@@ -1318,8 +1318,10 @@ template <int> constexpr int check_digits();
// A double-double floating point number.
// A double-double floating point number.
template
<
typename
T
>
template
<
typename
T
>
struct
float_info
<
T
,
enable_if_t
<!
std
::
numeric_limits
<
T
>::
is_iec559
&&
struct
float_info
<
T
,
enable_if_t
<!
(
std
::
numeric_limits
<
T
>::
digits
==
64
||
!
is_float128
<
T
>::
value
>>
{
std
::
numeric_limits
<
T
>::
digits
==
113
||
is_float128
<
T
>::
value
)
&&
std
::
is_same
<
T
,
long
double
>::
value
>>
{
static
constexpr
int
check
=
check_digits
<
std
::
numeric_limits
<
T
>::
digits
>
();
static
constexpr
int
check
=
check_digits
<
std
::
numeric_limits
<
T
>::
digits
>
();
using
carrier_uint
=
detail
::
uint128_t
;
using
carrier_uint
=
detail
::
uint128_t
;
};
};
...
...
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