mirror of
https://github.com/leozide/leocad
synced 2025-01-29 20:34:50 +01:00
Merge pull request #549 from j6t/master
Work around ambiguous operator== reported by modern clang.
This commit is contained in:
commit
05963fc8b0
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public:
|
||||||
void LoadDefaults();
|
void LoadDefaults();
|
||||||
void SaveDefaults();
|
void SaveDefaults();
|
||||||
|
|
||||||
bool operator==(const lcModelProperties& Properties)
|
bool operator==(const lcModelProperties& Properties) const
|
||||||
{
|
{
|
||||||
if (mFileName != Properties.mFileName || mModelName != Properties.mModelName || mAuthor != Properties.mAuthor ||
|
if (mFileName != Properties.mFileName || mModelName != Properties.mModelName || mAuthor != Properties.mAuthor ||
|
||||||
mDescription != Properties.mDescription || mComments != Properties.mComments)
|
mDescription != Properties.mDescription || mComments != Properties.mComments)
|
||||||
|
|
Loading…
Add table
Reference in a new issue