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
8e0dcd20
Commit
8e0dcd20
authored
Jul 06, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old deprecated functions
parent
1d3e3d8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
5 deletions
+1
-5
include/fmt/core.h
include/fmt/core.h
+0
-1
include/fmt/format.h
include/fmt/format.h
+1
-4
No files found.
include/fmt/core.h
View file @
8e0dcd20
...
...
@@ -1054,7 +1054,6 @@ template <typename OutputIt, typename Char> class basic_format_context {
// Returns an iterator to the beginning of the output range.
iterator
out
()
{
return
out_
;
}
FMT_DEPRECATED
iterator
begin
()
{
return
out_
;
}
// Advances the begin iterator to ``it``.
void
advance_to
(
iterator
it
)
{
out_
=
it
;
}
...
...
include/fmt/format.h
View file @
8e0dcd20
...
...
@@ -915,7 +915,7 @@ enum { SIGN_FLAG = 1, PLUS_FLAG = 2, MINUS_FLAG = 4, HASH_FLAG = 8 };
struct
align_spec
{
unsigned
width_
;
// Fill is always wchar_t and cast to char if necessary to avoid having
// two specialization of
AlignS
pec and its subclasses.
// two specialization of
align_s
pec and its subclasses.
wchar_t
fill_
;
alignment
align_
;
...
...
@@ -2589,9 +2589,6 @@ class arg_formatter : public internal::arg_formatter_base<Range> {
ctx_
(
ctx
),
parse_ctx_
(
parse_ctx
)
{}
FMT_DEPRECATED
arg_formatter
(
context_type
&
ctx
,
format_specs
&
spec
)
:
base
(
Range
(
ctx
.
out
()),
&
spec
),
ctx_
(
ctx
)
{}
using
base
::
operator
();
/** Formats an argument of a user-defined type. */
...
...
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