DanielChappuis / reactphysics3d

Open source C++ physics engine library in 3D
http://www.reactphysics3d.com
zlib License
1.54k stars 223 forks source link

Linker error #55

Closed andreasdr closed 6 years ago

andreasdr commented 6 years ago

Hi,

I have found a simple linker error which is easy to fix:

Have a look at

There you specify "inline" to a CPP definition, thats why its code is not generated in library. But as inline is not in header its also not inline compiled.

Removing the "inline" fixes the error.

Best regards Andreas

DanielChappuis commented 6 years ago

Thanks. The fix is now merged in the master branch.