Add const to fix the build

This commit is contained in:
Eric Fischer 2015-09-15 13:23:34 -07:00
parent 4dd28f7aae
commit 763bc36563

View File

@ -146,7 +146,7 @@ struct coalesce {
};
struct preservecmp {
bool operator()(struct coalesce &a, struct coalesce &b) {
bool operator()(const struct coalesce &a, const struct coalesce &b) {
return a.original_seq < b.original_seq;
}
} preservecmp;