File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.18)
2- set (CMAKE_CXX_STANDARD 17 )
2+ set (CMAKE_CXX_STANDARD 20 )
33set (CMAKE_CXX_STANDARD_REQUIRED ON )
44
55include (VERSION .cmake)
Original file line number Diff line number Diff line change @@ -2055,6 +2055,11 @@ void SyncJournalDb::markVirtualFileForDownloadRecursively(const QByteArray &path
20552055 query.exec ();
20562056}
20572057
2058+ SyncJournalDb::PinStateInterface::PinStateInterface (SyncJournalDb *db)
2059+ : _db(db)
2060+ {
2061+ }
2062+
20582063Optional<PinState> SyncJournalDb::PinStateInterface::rawForPath (const QByteArray &path)
20592064{
20602065 QMutexLocker lock (&_db->_mutex );
Original file line number Diff line number Diff line change @@ -286,6 +286,7 @@ class OCSYNC_EXPORT SyncJournalDb : public QObject
286286 */
287287 struct OCSYNC_EXPORT PinStateInterface
288288 {
289+ PinStateInterface (SyncJournalDb *db);
289290 PinStateInterface (const PinStateInterface &) = delete ;
290291 PinStateInterface (PinStateInterface &&) = delete ;
291292
You can’t perform that action at this time.
0 commit comments