Trying to fix a linker issue on MSYS

This commit is contained in:
Matthias Koefferlein 2024-03-23 20:28:41 +01:00
parent 54273206a7
commit 97a33f8d66
2 changed files with 6 additions and 1 deletions

View File

@ -47,6 +47,7 @@
#include "tlException.h"
#include "tlString.h"
#include "tlUri.h"
#include "tlHttpStream.h"
#if defined(HAVE_QT)
# include <QByteArray>
@ -259,6 +260,10 @@ inflating_input_stream<Base>::auto_detect_gz ()
return true;
}
// explicit instantiations
template class inflating_input_stream<tl::InputPipe>;
template class inflating_input_stream<tl::InputHttpStream>;
// ---------------------------------------------------------------
// InputStream implementation

View File

@ -590,7 +590,7 @@ private:
* @brief A wrapper that adds generic .gz support
*/
template <class Base>
class TL_PUBLIC_TEMPLATE inflating_input_stream
class TL_PUBLIC inflating_input_stream
: public InputStreamBase
{
public: