@@ -871,11 +871,13 @@ namespace skvm {
871871 static inline I32 max (I32 x, I32a y) { return x->max (x,y); }
872872 static inline I32 max (int x, I32 y) { return y->max (x,y); }
873873
874- static inline I32 operator ==(I32 x, I32a y) { return x->eq (x,y); }
875- static inline I32 operator ==(int x, I32 y) { return y->eq (x,y); }
874+ static inline I32 operator ==(I32 x, I32 y) { return x->eq (x,y); }
875+ static inline I32 operator ==(I32 x, int y) { return x->eq (x,y); }
876+ static inline I32 operator ==(int x, I32 y) { return y->eq (x,y); }
876877
877- static inline I32 operator !=(I32 x, I32a y) { return x->neq (x,y); }
878- static inline I32 operator !=(int x, I32 y) { return y->neq (x,y); }
878+ static inline I32 operator !=(I32 x, I32 y) { return x->neq (x,y); }
879+ static inline I32 operator !=(I32 x, int y) { return x->neq (x,y); }
880+ static inline I32 operator !=(int x, I32 y) { return y->neq (x,y); }
879881
880882 static inline I32 operator < (I32 x, I32a y) { return x->lt (x,y); }
881883 static inline I32 operator < (int x, I32 y) { return y->lt (x,y); }
@@ -908,11 +910,13 @@ namespace skvm {
908910 static inline F32 max (F32 x, F32a y) { return x->max (x,y); }
909911 static inline F32 max (float x, F32 y) { return y->max (x,y); }
910912
911- static inline I32 operator ==(F32 x, F32a y) { return x->eq (x,y); }
912- static inline I32 operator ==(float x, F32 y) { return y->eq (x,y); }
913+ static inline I32 operator ==(F32 x, F32 y) { return x->eq (x,y); }
914+ static inline I32 operator ==(F32 x, float y) { return x->eq (x,y); }
915+ static inline I32 operator ==(float x, F32 y) { return y->eq (x,y); }
913916
914- static inline I32 operator !=(F32 x, F32a y) { return x->neq (x,y); }
915- static inline I32 operator !=(float x, F32 y) { return y->neq (x,y); }
917+ static inline I32 operator !=(F32 x, F32 y) { return x->neq (x,y); }
918+ static inline I32 operator !=(F32 x, float y) { return x->neq (x,y); }
919+ static inline I32 operator !=(float x, F32 y) { return y->neq (x,y); }
916920
917921 static inline I32 operator < (F32 x, F32a y) { return x->lt (x,y); }
918922 static inline I32 operator < (float x, F32 y) { return y->lt (x,y); }
0 commit comments