mirror of https://github.com/KLayout/klayout.git
Fixed a linker issue on Qt4
This commit is contained in:
parent
283a9d0b22
commit
2aa88fe29c
|
|
@ -364,13 +364,13 @@ namespace std
|
|||
};
|
||||
|
||||
template <>
|
||||
size_t hfunc (const QString &o, size_t h)
|
||||
inline size_t hfunc (const QString &o, size_t h)
|
||||
{
|
||||
return hfunc_iterable (o, h);
|
||||
}
|
||||
|
||||
template <>
|
||||
size_t hfunc (const QString &o)
|
||||
inline size_t hfunc (const QString &o)
|
||||
{
|
||||
return hfunc (o, size_t (0));
|
||||
}
|
||||
|
|
@ -389,13 +389,13 @@ namespace std
|
|||
*/
|
||||
|
||||
template <>
|
||||
size_t hfunc (const QByteArray &o, size_t h)
|
||||
inline size_t hfunc (const QByteArray &o, size_t h)
|
||||
{
|
||||
return hfunc_iterable (o, h);
|
||||
}
|
||||
|
||||
template <>
|
||||
size_t hfunc (const QByteArray &o)
|
||||
inline size_t hfunc (const QByteArray &o)
|
||||
{
|
||||
return hfunc (o, size_t (0));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue