You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Windows builds issue the following warning, due to the use of the pimpl idiom using std::shared_ptr<>, e.g:
warning C4251: 'djinterop::database::pimpl_
': class 'std::shared_ptr<djinterop::database_impl>' needs to have dll-interface to be used by clients of class 'djinte
rop::database' [C:\Users\smidge\Source\libdjinterop\cmake_build\DjInterop.vcxproj]
This can apparently be fixed by specifying DJINTEROP_PUBLIC on individual public methods (ugh), rather than the whole class.
The text was updated successfully, but these errors were encountered:
Windows builds issue the following warning, due to the use of the pimpl idiom using
std::shared_ptr<>
, e.g:This can apparently be fixed by specifying
DJINTEROP_PUBLIC
on individual public methods (ugh), rather than the whole class.The text was updated successfully, but these errors were encountered: