Skip to content

Commit 6e4707d

Browse files
authored
Merge pull request #1349 from piluke/patch-1
Fix a shadow warning by renaming a parameter in btInfMaskConverter
2 parents d881d15 + 1360641 commit 6e4707d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LinearMath/btScalar.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ inline int btGetVersion()
374374
float mask;
375375
int intmask;
376376
};
377-
btInfMaskConverter(int mask = 0x7F800000)
378-
: intmask(mask)
377+
btInfMaskConverter(int _mask = 0x7F800000)
378+
: intmask(_mask)
379379
{
380380
}
381381
};

0 commit comments

Comments
 (0)