From acc9990abd2206491480291b0f85f925110102ea Mon Sep 17 00:00:00 2001 From: Max Burke Date: Mon, 5 Aug 2019 11:57:54 -0700 Subject: [PATCH] Fix compilation error in tests. (#5472) Local variables were shadowing member fields, causing errors. --- tests/native_type_test_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/native_type_test_impl.h b/tests/native_type_test_impl.h index c6efff49d..2473ad3c7 100644 --- a/tests/native_type_test_impl.h +++ b/tests/native_type_test_impl.h @@ -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; } }; }