Move Realm::Config's default constructor out-of-line
Removes the need for things including shared_realm.hpp to include schema.hpp.
This commit is contained in:
parent
028ed2a4c2
commit
a492966949
|
@ -47,6 +47,8 @@ Realm::Config::Config(const Config& c)
|
|||
}
|
||||
}
|
||||
|
||||
Realm::Config::Config() = default;
|
||||
Realm::Config::Config(Config&&) = default;
|
||||
Realm::Config::~Config() = default;
|
||||
|
||||
Realm::Config& Realm::Config::operator=(realm::Realm::Config const& c)
|
||||
|
|
|
@ -56,8 +56,8 @@ namespace realm {
|
|||
|
||||
MigrationFunction migration_function;
|
||||
|
||||
Config() = default;
|
||||
Config(Config&&) = default;
|
||||
Config();
|
||||
Config(Config&&);
|
||||
Config(const Config& c);
|
||||
~Config();
|
||||
|
||||
|
|
Loading…
Reference in New Issue