Skip to content

Commit 242af98

Browse files
committed
Fix warning related to overwriting local member
1 parent 1bcb172 commit 242af98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vsgvr/src/vsgvr/app/UserOrigin.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ namespace vsgvr
2626
{
2727
UserOrigin::UserOrigin() {}
2828

29-
UserOrigin::UserOrigin(vsg::dmat4 matrix)
30-
: Inherit(matrix)
29+
UserOrigin::UserOrigin(vsg::dmat4 _matrix)
30+
: Inherit(_matrix)
3131
{}
3232

3333
UserOrigin::UserOrigin(vsg::dvec3 position, vsg::dquat orientation, vsg::dvec3 scale)

0 commit comments

Comments
 (0)