Merge pull request #5309

43042a28 Implement array_entry_t copy constructor (Guido Vranken)
This commit is contained in:
Riccardo Spagni 2019-04-01 17:28:08 +02:00
commit 87840192dd
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 0 deletions

View File

@ -82,6 +82,7 @@ namespace epee
struct array_entry_t
{
array_entry_t():m_it(m_array.end()){}
array_entry_t(const array_entry_t& other):m_array(other.m_array), m_it(m_array.end()){}
const t_entry_type* get_first_val() const
{