diff --git a/src/libs/sqlite/sqlitevalue.h b/src/libs/sqlite/sqlitevalue.h index 58c2902a0ed..a57ad7aa120 100644 --- a/src/libs/sqlite/sqlitevalue.h +++ b/src/libs/sqlite/sqlitevalue.h @@ -32,6 +32,7 @@ #include + #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) {