We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc9b37 commit 6782795Copy full SHA for 6782795
src/dirdef.cpp
@@ -620,8 +620,9 @@ bool DirDef::depGraphIsTrivial() const
620
int FilePairDict::compareValues(const FilePair *left,const FilePair *right) const
621
{
622
int orderHi = qstricmp(left->source()->name(),right->source()->name());
623
+ if (orderHi!=0) return orderHi;
624
int orderLo = qstricmp(left->destination()->name(),right->destination()->name());
- return orderHi==0 ? orderLo : orderHi;
625
+ return orderLo;
626
}
627
628
//----------------------------------------------------------------------
0 commit comments