Try to fix the Windows builds

See issue #1120.
This commit is contained in:
Martin Kleusberg
2017-09-05 16:57:15 +02:00
parent f01ad409ff
commit 5f6a1a1688
2 changed files with 3 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
#include <sstream>
#include <QDebug>
#include <QDataStream> // This include seems to only be necessary for the Windows build
namespace sqlb {
@@ -28,7 +29,7 @@ QDataStream& operator<<(QDataStream& ds, const ObjectIdentifier& objid)
return ds;
}
QDataStream & operator>>(QDataStream& ds, ObjectIdentifier& objid)
QDataStream& operator>>(QDataStream& ds, ObjectIdentifier& objid)
{
// Read in the item
QVariant v;