diff options
author | Michael Welter <michael@welter-4d.de> | 2022-09-11 20:56:18 +0200 |
---|---|---|
committer | Michael Welter <michael@welter-4d.de> | 2022-12-20 15:36:13 +0100 |
commit | f43e674bc0e47b7360c2a1ee335f7536e1638ae1 (patch) | |
tree | a9e418d2ffbdb0b791aa36c6f0ed1407771e99ab /migration/migration.hpp | |
parent | 00299649bf84c9f81764d36d49c01c254953f362 (diff) |
Fix initialization order issues
Diffstat (limited to 'migration/migration.hpp')
-rw-r--r-- | migration/migration.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/migration/migration.hpp b/migration/migration.hpp index a3035247..7fc18c97 100644 --- a/migration/migration.hpp +++ b/migration/migration.hpp @@ -43,6 +43,9 @@ namespace detail { static void set_last_migration_time(const QString& val); static int to_int(const QString& str, bool& ok); + + static std::vector<mptr>& migration_list(); + static std::vector<mfun>& migration_thunks(); }; template<typename t> |