Skip to content
Snippets Groups Projects
Commit bc105e5e authored by Gerhard Raven's avatar Gerhard Raven
Browse files

Add check of EventIDBase assignment operator

parent 7c6eaa81
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,8 @@ BOOST_AUTO_TEST_CASE( comparison )
EventIDBase ei1a = ei1;
BOOST_CHECK( ei1a == ei1 );
ei1a = ei2;
BOOST_CHECK( ei1a == ei2 );
std::array<EventIDBase, 3> a = {ei2, ei1, ei3};
std::sort( begin( a ), end( a ), EventIDBase::SortByRunEvent() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment