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
a44716f5
Unverified
Commit
a44716f5
authored
Feb 11, 2022
by
Vladislav Shchapov
Committed by
GitHub
Feb 11, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workaround to Intel compiler (#2758)
parent
c71b0701
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/fmt/core.h
include/fmt/core.h
+2
-2
No files found.
include/fmt/core.h
View file @
a44716f5
...
...
@@ -1431,8 +1431,8 @@ template <typename Context> struct arg_mapper {
!
std
::
is_const
<
remove_reference_t
<
T
>>::
value
||
has_fallback_formatter
<
U
,
char_type
>::
value
>
{};
#if
FMT_MSC_VER != 0 && FMT_MSC_VER < 191
0
// Workaround a bug in MSVC.
#if
(FMT_MSC_VER != 0 && FMT_MSC_VER < 1910) || FMT_ICC_VERSION !=
0
// Workaround a bug in MSVC
and Intel (Issue 2746)
.
template
<
typename
T
>
FMT_CONSTEXPR
FMT_INLINE
auto
do_map
(
T
&&
val
)
->
T
&
{
return
val
;
}
...
...
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