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
ba50c19e
Commit
ba50c19e
authored
Jun 02, 2022
by
agga
Committed by
Victor Zverovich
Jun 01, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use qualified call to avoid ADL conflict with std::format_to
parent
9d603959
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/os.cc
src/os.cc
+1
-1
No files found.
src/os.cc
View file @
ba50c19e
...
@@ -169,7 +169,7 @@ void detail::format_windows_error(detail::buffer<char>& out, int error_code,
...
@@ -169,7 +169,7 @@ void detail::format_windows_error(detail::buffer<char>& out, int error_code,
if
(
msg
)
{
if
(
msg
)
{
utf16_to_utf8
utf8_message
;
utf16_to_utf8
utf8_message
;
if
(
utf8_message
.
convert
(
msg
)
==
ERROR_SUCCESS
)
{
if
(
utf8_message
.
convert
(
msg
)
==
ERROR_SUCCESS
)
{
format_to
(
buffer_appender
<
char
>
(
out
),
"{}: {}"
,
message
,
utf8_message
);
f
mt
::
f
ormat_to
(
buffer_appender
<
char
>
(
out
),
"{}: {}"
,
message
,
utf8_message
);
return
;
return
;
}
}
}
}
...
...
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