diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-07-26 22:36:44 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-07-28 15:46:16 +0200 |
commit | ed1b034089dfc1948acaa80a5200cb0df28d0c1c (patch) | |
tree | 5b462d21e2b1de16bcd48e98d8875f1eb07bfb6b /lib/syncdata.h | |
parent | eed5a6f127ec3bb1553ac629457f196d8893665a (diff) | |
download | libquotient-ed1b034089dfc1948acaa80a5200cb0df28d0c1c.tar.gz libquotient-ed1b034089dfc1948acaa80a5200cb0df28d0c1c.zip |
SyncData: minor update to the cache version
The minor component is now updated in .cpp, not in .h.
Diffstat (limited to 'lib/syncdata.h')
-rw-r--r-- | lib/syncdata.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/syncdata.h b/lib/syncdata.h index b0e31726..b869a541 100644 --- a/lib/syncdata.h +++ b/lib/syncdata.h @@ -87,7 +87,8 @@ public: QStringList unresolvedRooms() const { return unresolvedRoomIds; } - static std::pair<int, int> cacheVersion() { return { 11, 0 }; } + static constexpr int MajorCacheVersion = 11; + static std::pair<int, int> cacheVersion(); static QString fileNameForRoom(QString roomId); private: |