X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsqlitestorage.h;h=c88a3c6df17308eef4181847eeec87abb1b671e9;hp=d52cdfa24a73c86b5a7d802a7a9e405cf8f9e0f5;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=767e5f04ab1aff5ea98e9d3bf67d8f22043bf90c diff --git a/src/core/sqlitestorage.h b/src/core/sqlitestorage.h index d52cdfa2..c88a3c6d 100644 --- a/src/core/sqlitestorage.h +++ b/src/core/sqlitestorage.h @@ -31,7 +31,7 @@ class SqliteStorage : public AbstractSqlStorage Q_OBJECT public: - SqliteStorage(QObject *parent = 0); + SqliteStorage(QObject *parent = nullptr); ~SqliteStorage() override; std::unique_ptr createMigrationReader() override; @@ -183,7 +183,7 @@ protected: private: void setMaxId(MigrationObject mo); - qint64 _maxId; + qint64 _maxId{0}; };