Skip to content

Instantly share code, notes, and snippets.

@motonacciu
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

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

Select an option

Save motonacciu/b62221b90083c6d98129 to your computer and use it in GitHub Desktop.
// comparator
auto comp = [](const Object& lhs, const Object &rhs) {
return lhs.type() < rhs.type() ||
(lhs.type() == rhs.type() && std::strcmp(lhs.msg(), rhs.msg()) < 0);
};
std::sort(src_objs.begin(), src_objs.end(), comp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment