Fix RelationModel == operator (#68)

I assume this was just a copy paste mistake.
This commit is contained in:
Miklós Márton 2020-01-29 22:28:45 +01:00 committed by GitHub
parent 1ccae27b7e
commit 2f439541a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ bool operator ==(const RelationModel &l, const RelationModel &r)
{
return r.foreignColumn == l.foreignColumn
&& r.localColumn == l.localColumn
&& r.localProperty == l.localColumn
&& r.localProperty == l.localProperty
&& r.masterClassName == l.masterClassName;
}