Skip to content

Commit

Permalink
Merge pull request #1349 from piluke/patch-1
Browse files Browse the repository at this point in the history
Fix a shadow warning by renaming a parameter in btInfMaskConverter
  • Loading branch information
erwincoumans committed Sep 29, 2017
2 parents d881d15 + 1360641 commit 6e4707d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LinearMath/btScalar.h
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ inline int btGetVersion()
float mask;
int intmask;
};
btInfMaskConverter(int mask = 0x7F800000)
: intmask(mask)
btInfMaskConverter(int _mask = 0x7F800000)
: intmask(_mask)
{
}
};
Expand Down

0 comments on commit 6e4707d

Please sign in to comment.