This website works better with JavaScript.
Home
Help
Register
Sign In
AerScript
/
Aer
Watch
0
Star
6
Fork
0
Code
Issues
6
Pull Requests
0
Releases
2
Wiki
Activity
Browse Source
Correct the condition.
release/v0.1
Rafal Kupiec
1 year ago
parent
9cc0f203ca
commit
24c75975e3
Signed by:
belliash
GPG Key ID:
4E829243E0CFE6B4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
engine/oop.c
+ 1
- 1
engine/oop.c
View File
@ -810,7 +810,7 @@ PH7_PRIVATE sxi32 PH7_ClassInstanceCmp(ph7_class_instance *pLeft, ph7_class_inst
*
are
identical
if
and
only
if
they
refer
to
the
same
instance
*
of
the
same
class
.
*/
return
!
(
pLeft
=
=
pRight
)
;
return
pLeft
!
=
pRight
;
}
/*
*
Attribute
comparison
.
Write
Preview
Loading…
Cancel
Save