X-Git-Url: https://git.donarmstrong.com/?p=rsem.git;a=blobdiff_plain;f=bc_aux.h;h=eb1f1a0130a5958e7822156dc1119d5c0ccd0aed;hp=0527e7eecd6b1dd32c6e99b5dd4fea3fbd400e2e;hb=2d71eb92104693ca9baa5a2e1c23eeca776d8fd3;hpb=fc69cf6af24c0550e55447fc82f01cb6f90c1c42 diff --git a/bc_aux.h b/bc_aux.h index 0527e7e..eb1f1a0 100644 --- a/bc_aux.h +++ b/bc_aux.h @@ -46,7 +46,7 @@ struct PairedEndT { bool operator< (const PairedEndT& o) const { int value = mate1.compare(o.mate1); - return value < 0 || value == 0 && mate2 < o.mate2; + return value < 0 || (value == 0 && mate2 < o.mate2); } };