mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-30 22:31:29 +01:00
another attempt at fixing #921
This commit is contained in:
parent
245a628d90
commit
22c7933fe5
@ -167,6 +167,9 @@ private:
|
||||
//
|
||||
// We provide an instantiation for char
|
||||
//
|
||||
#if defined(_WIN32) && defined(POCO_DLL) && !defined(Foundation_EXPORTS) // See #921
|
||||
template class Foundation_API BasicBufferedBidirectionalStreamBuf<char, std::char_traits<char> >;
|
||||
#endif
|
||||
typedef BasicBufferedBidirectionalStreamBuf<char, std::char_traits<char> > BufferedBidirectionalStreamBuf;
|
||||
|
||||
|
||||
|
@ -159,6 +159,9 @@ private:
|
||||
//
|
||||
// We provide an instantiation for char
|
||||
//
|
||||
#if defined(_WIN32) && defined(POCO_DLL) && !defined(Foundation_EXPORTS) // See #921
|
||||
template class Foundation_API BasicBufferedStreamBuf<char, std::char_traits<char> >;
|
||||
#endif
|
||||
typedef BasicBufferedStreamBuf<char, std::char_traits<char> > BufferedStreamBuf;
|
||||
|
||||
|
||||
|
@ -165,6 +165,9 @@ private:
|
||||
//
|
||||
// We provide an instantiation for char
|
||||
//
|
||||
#if defined(_WIN32) && defined(POCO_DLL) && !defined(Foundation_EXPORTS) // See #921
|
||||
template class Foundation_API BasicUnbufferedStreamBuf<char, std::char_traits<char> >;
|
||||
#endif
|
||||
typedef BasicUnbufferedStreamBuf<char, std::char_traits<char> > UnbufferedStreamBuf;
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user