mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-15 06:35:25 +02:00
another attempt at fixing #921
This commit is contained in:
parent
92f54bc6e6
commit
3fa63fb502
@ -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