]> git.donarmstrong.com Git - rsem.git/blobdiff - bc_aux.h
Updated boost to v1.55.0
[rsem.git] / bc_aux.h
index 0527e7eecd6b1dd32c6e99b5dd4fea3fbd400e2e..eb1f1a0130a5958e7822156dc1119d5c0ccd0aed 100644 (file)
--- 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);
        }
 };