mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
Add missing copy constructor and assignment operators
This commit is contained in:
committed by
Klaus Basan
parent
3774f2b60f
commit
a36023f6d8
@@ -34,6 +34,7 @@ namespace BlackMisc
|
||||
//! @{
|
||||
explicit OutputIterator(const F &func) : m_func(func) {}
|
||||
explicit OutputIterator(F &&func) : m_func(std::move(func)) {}
|
||||
OutputIterator(const OutputIterator &other) : m_func(other.m_func) {}
|
||||
//! @}
|
||||
|
||||
//! Advance the iterator (no-op)
|
||||
|
||||
Reference in New Issue
Block a user