mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:23:52 +00:00
be explicit about narrowing to resolve: error: type 'btScalar *' (aka 'float *') cannot be narrowed to 'bool' in initializer list [-Wc++11-narrowing]
This commit is contained in:
parent
686692519c
commit
7156b11dbc
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ namespace
|
||||||
struct DetourNavigatorRecastMeshObjectTest : Test
|
struct DetourNavigatorRecastMeshObjectTest : Test
|
||||||
{
|
{
|
||||||
btBoxShape mBoxShape {btVector3(1, 2, 3)};
|
btBoxShape mBoxShape {btVector3(1, 2, 3)};
|
||||||
btCompoundShape mCompoundShape {btVector3(1, 2, 3)};
|
btCompoundShape mCompoundShape {true};
|
||||||
btTransform mTransform {btQuaternion(btVector3(1, 2, 3), 1), btVector3(1, 2, 3)};
|
btTransform mTransform {btQuaternion(btVector3(1, 2, 3), 1), btVector3(1, 2, 3)};
|
||||||
|
|
||||||
DetourNavigatorRecastMeshObjectTest()
|
DetourNavigatorRecastMeshObjectTest()
|
||||||
|
|
Loading…
Reference in a new issue