mirror of https://github.com/KLayout/klayout.git
Trying to fix a linker issue on MSYS
This commit is contained in:
parent
54273206a7
commit
97a33f8d66
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue