Skip to content

Instantly share code, notes, and snippets.

@motonacciu
Created July 4, 2015 18:05
Show Gist options
  • Select an option

  • Save motonacciu/b53021d47c2c7d9a113d to your computer and use it in GitHub Desktop.

Select an option

Save motonacciu/b53021d47c2c7d9a113d to your computer and use it in GitHub Desktop.
std::vector<Object> dst_objs;
for(auto&& cur : src_objs) {
// filter all TYPE1 messages
if (cur.type() == Type::TYPE1)
dst_objs.push_back(std::move(cur));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment