Fix MSVC warning dllexport and extern are incompatible

C4910: '__declspec(dllexport)' and 'extern' are incompatible on an
explicit instantiation
This commit is contained in:
Urs Fleisch
2023-12-10 08:25:36 +01:00
parent c7babea74a
commit ec734bbe08
3 changed files with 7 additions and 3 deletions

View File

@ -37,7 +37,7 @@
#ifdef _MSC_VER
// Explained at end of tpropertymap.cpp
extern template class TAGLIB_EXPORT TagLib::Map<TagLib::String, TagLib::StringList>;
extern template class TagLib::Map<TagLib::String, TagLib::StringList>;
#endif
namespace TagLib {