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
6606971a
Commit
6606971a
authored
Nov 18, 2015
by
vitaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve compatibility with bcc32
parent
31aced8b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
format.cc
format.cc
+2
-2
format.h
format.h
+1
-1
No files found.
format.cc
View file @
6606971a
...
...
@@ -744,7 +744,7 @@ FMT_FUNC void fmt::internal::format_windows_error(
}
}
}
FMT_CATCH
(...)
{}
f
ormat_error_code
(
out
,
error_code
,
message
);
f
mt
::
format_error_code
(
out
,
error_code
,
message
);
// 'fmt::' is for bcc32.
}
#endif // FMT_USE_WINDOWS_H
...
...
@@ -767,7 +767,7 @@ FMT_FUNC void fmt::internal::format_system_error(
buffer
.
resize
(
buffer
.
size
()
*
2
);
}
}
FMT_CATCH
(...)
{}
f
ormat_error_code
(
out
,
error_code
,
message
);
f
mt
::
format_error_code
(
out
,
error_code
,
message
);
// 'fmt::' is for bcc32.
}
template
<
typename
Char
>
...
...
format.h
View file @
6606971a
...
...
@@ -1412,7 +1412,7 @@ class BasicFormatter : private internal::FormatterBase {
FMT_DISALLOW_COPY_AND_ASSIGN
(
BasicFormatter
);
using
FormatterBase
::
get_arg
;
using
internal
::
FormatterBase
::
get_arg
;
// Checks if manual indexing is used and returns the argument with
// specified name.
...
...
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