# # # patch "paths.hh" # from [c2ae04d9e1e0ddf5d131c2a384eeb17433c5af62] # to [adf4ce1cbc60b1f05fb4555178f985648d0bf2c5] # ============================================================ --- paths.hh c2ae04d9e1e0ddf5d131c2a384eeb17433c5af62 +++ paths.hh adf4ce1cbc60b1f05fb4555178f985648d0bf2c5 @@ -220,7 +220,7 @@ public: std::string::const_iterator q = other.data.begin(); std::string::const_iterator qlim = other.data.end(); - while (*p == *q && p != plim && q != qlim) + while (p != plim && q != qlim && *p == *q) p++, q++; if (p == plim && q == qlim) // equal -> not less