Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
38dd831d
Commit
38dd831d
authored
Oct 08, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made dlib::array able to push_back() from rvalues.
parent
17a6e682
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
array_kernel.h
dlib/array/array_kernel.h
+15
-0
array_kernel_abstract.h
dlib/array/array_kernel_abstract.h
+5
-0
No files found.
dlib/array/array_kernel.h
View file @
38dd831d
...
@@ -193,6 +193,10 @@ namespace dlib
...
@@ -193,6 +193,10 @@ namespace dlib
T
&
item
T
&
item
);
);
void
push_back
(
T
&&
item
);
typedef
T
*
iterator
;
typedef
T
*
iterator
;
typedef
const
T
*
const_iterator
;
typedef
const
T
*
const_iterator
;
iterator
begin
()
{
return
array_elements
;
}
iterator
begin
()
{
return
array_elements
;
}
...
@@ -779,6 +783,17 @@ namespace dlib
...
@@ -779,6 +783,17 @@ namespace dlib
}
}
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
T
,
typename
mem_manager
>
void
array
<
T
,
mem_manager
>::
push_back
(
T
&&
item
)
{
push_back
(
item
);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template
<
typename
T
,
typename
MM
>
template
<
typename
T
,
typename
MM
>
...
...
dlib/array/array_kernel_abstract.h
View file @
38dd831d
...
@@ -274,6 +274,11 @@ namespace dlib
...
@@ -274,6 +274,11 @@ namespace dlib
If an exception is thrown then it has no effect on *this.
If an exception is thrown then it has no effect on *this.
!*/
!*/
void
push_back
(
T
&&
item
)
{
push_back
(
item
);
}
/*!
enable push_back from rvalues
!*/
typedef
T
*
iterator
;
typedef
T
*
iterator
;
typedef
const
T
*
const_iterator
;
typedef
const
T
*
const_iterator
;
...
...
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