Skip to content

Instantly share code, notes, and snippets.

@wilbeibi
Last active December 14, 2015 02:38
Show Gist options
  • Save wilbeibi/5014674 to your computer and use it in GitHub Desktop.
Save wilbeibi/5014674 to your computer and use it in GitHub Desktop.
struct Job{
int j,b;
bool operator < (const Job& x) const {
return j < x.j;
}
};
// ... ...
vector <Job> v;
v.push_back((Job){j,b});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment