mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
.cosmetics
This commit is contained in:
parent
f48c00c3d6
commit
66de7600a9
1 changed files with 1 additions and 2 deletions
|
|
@ -187,10 +187,9 @@ bool DirDiffDlg::FileEqual(const String& f1, const String& f2, int& kind)
|
|||
FileIn in2(f2);
|
||||
if(in1 && in2) {
|
||||
kind = NORMAL_FILE;
|
||||
while(!in1.IsEof() && !in2.IsEof()) {
|
||||
while(!in1.IsEof() && !in2.IsEof())
|
||||
if(in1.GetLine() != in2.GetLine())
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue