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
486fff59
Commit
486fff59
authored
Oct 24, 2018
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add sprintf_format instantiations and remove syntactic noise
parent
1e3dcbba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
include/fmt/core.h
include/fmt/core.h
+0
-1
src/format.cc
src/format.cc
+5
-0
No files found.
include/fmt/core.h
View file @
486fff59
...
...
@@ -411,7 +411,6 @@ class basic_string_view {
}
friend
bool
operator
<
(
basic_string_view
lhs
,
basic_string_view
rhs
)
{
return
lhs
.
compare
(
rhs
)
<
0
;
}
friend
bool
operator
<=
(
basic_string_view
lhs
,
basic_string_view
rhs
)
{
return
lhs
.
compare
(
rhs
)
<=
0
;
...
...
src/format.cc
View file @
486fff59
...
...
@@ -28,6 +28,11 @@ template FMT_API int internal::char_traits<char>::format_float(
template
FMT_API
std
::
string
internal
::
vformat
<
char
>(
string_view
,
basic_format_args
<
format_context
>
);
template
FMT_API
void
internal
::
sprintf_format
(
double
,
internal
::
buffer
&
,
core_format_specs
);
template
FMT_API
void
internal
::
sprintf_format
(
long
double
,
internal
::
buffer
&
,
core_format_specs
);
// Explicit instantiations for wchar_t.
template
FMT_API
wchar_t
internal
::
thousands_sep
(
locale_provider
*
);
...
...
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