sqlite: mingw compile fix

Change-Id: Ia427231c864144b7a83a8346e050acc2d4531851
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Tim Jenssen
2020-06-05 17:57:04 +02:00
parent 128980bb84
commit 90fcca16e8

View File

@@ -32,6 +32,7 @@
#include <cstddef> #include <cstddef>
#pragma once #pragma once
namespace Sqlite { namespace Sqlite {
@@ -106,7 +107,7 @@ public:
return {}; return {};
} }
friend bool operator==(const ValueBase &first, nullptr_t) { return first.isNull(); } friend bool operator==(const ValueBase &first, std::nullptr_t) { return first.isNull(); }
friend bool operator==(const ValueBase &first, long long second) friend bool operator==(const ValueBase &first, long long second)
{ {