Skip to content

Instantly share code, notes, and snippets.

@scwood
Created June 29, 2016 00:02
Show Gist options
  • Select an option

  • Save scwood/dc7bb4c3787f5b2f3d1799cb5bb907ac to your computer and use it in GitHub Desktop.

Select an option

Save scwood/dc7bb4c3787f5b2f3d1799cb5bb907ac to your computer and use it in GitHub Desktop.
Comparison operator
bool operator<(Grade const &a, Grade const &b) {
return a.className < b.className ||
(a.className == b.className && a.score < b.score);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment