Added missing contents for TOOL_EVENT_LIST operator||.

This commit is contained in:
Maciej Suminski 2015-06-05 17:49:01 +02:00
parent fa421f15d8
commit b9805e4530
1 changed files with 1 additions and 0 deletions

View File

@ -537,6 +537,7 @@ public:
TOOL_EVENT_LIST& operator||( const TOOL_EVENT_LIST& aEvent )
{
std::copy( aEvent.m_events.begin(), aEvent.m_events.end(), std::back_inserter( m_events ) );
return *this;
}