forked from qt-creator/qt-creator
sqlite: mingw compile fix
Change-Id: Ia427231c864144b7a83a8346e050acc2d4531851 Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Sqlite {
|
||||
@@ -106,7 +107,7 @@ public:
|
||||
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user