Commit 38dd831d authored by Davis King's avatar Davis King

Made dlib::array able to push_back() from rvalues.

parent 17a6e682
...@@ -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>
......
...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment