blueloveTH 2 лет назад
Родитель
Сommit
a7110a3f63
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/linalg.h

+ 2 - 2
src/linalg.h

@@ -581,13 +581,13 @@ struct PyMat3x3: Mat3x3{
 
         vm->bind_method<1>(type, "__eq__", [](VM* vm, ArgsView args){
             PyMat3x3& self = _CAST(PyMat3x3&, args[0]);
-            PyMat3x3& other = _CAST(PyMat3x3&, args[1]);
+            PyMat3x3& other = CAST(PyMat3x3&, args[1]);
             return VAR(self == other);
         });
 
         vm->bind_method<1>(type, "__ne__", [](VM* vm, ArgsView args){
             PyMat3x3& self = _CAST(PyMat3x3&, args[0]);
-            PyMat3x3& other = _CAST(PyMat3x3&, args[1]);
+            PyMat3x3& other = CAST(PyMat3x3&, args[1]);
             return VAR(self != other);
         });