Closed andreasdr closed 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
Thanks. The fix is now merged in the master branch.
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