Fix compilation error in tests. (#5472)
authorMax Burke <maxburke@gmail.com>
Mon, 5 Aug 2019 18:57:54 +0000 (11:57 -0700)
committerWouter van Oortmerssen <aardappel@gmail.com>
Mon, 5 Aug 2019 18:57:54 +0000 (11:57 -0700)
Local variables were shadowing member fields, causing errors.

tests/native_type_test_impl.h

index c6efff4..2473ad3 100644 (file)
@@ -8,7 +8,7 @@ namespace Native {
     float z;
 
     Vector3D() { x = 0; y = 0; z = 0; };
-    Vector3D(float x, float y, float z) { this->x = x; this->y = y; this->z = z; }
+    Vector3D(float _x, float _y, float _z) { this->x = _x; this->y = _y; this->z = _z; }
   };
 }