Open
Description
While adding a workaround for ocornut/imgui#3850 I stumbled upon an alternative solution for (potentially?) forcing inline methods to export. Turns out you can add __declspec(dllexport)
to a forward declaration and the members will be exported. (See here)
However, I did not test to see if this worked for inline methods.
I seem to recall trying this with inline functions and it didn't work, but this could potentially cut down on the noise in certain libraries.