diff options
author | 2016-08-05 23:51:36 -0700 | |
---|---|---|
committer | 2016-08-06 11:58:04 -0700 | |
commit | 64ba7d5be854122e1a5ec2c17949634abebca250 (patch) | |
tree | 23a645693d6bfea50c5c7d2c32da5d194944609b /paludis/environments/paludis/world.cc | |
parent | 1ad5f5ce2025f1db0ea5dd1fcf72223430f143b4 (diff) | |
download | paludis-64ba7d5be854122e1a5ec2c17949634abebca250.tar.gz paludis-64ba7d5be854122e1a5ec2c17949634abebca250.tar.xz |
modernize: use default method synthesis
Convert a number of destructors to default synthesized functions. Try to
inline a few instances into the header. It should be possible to inline all of
them, however, gcc seems to emit a number of warnings. Furthermore, some of the
destructors are pure-virtualed, but provide an implementation. Placing the
definition into the header causes ODR violations.
Diffstat (limited to 'paludis/environments/paludis/world.cc')
-rw-r--r-- | paludis/environments/paludis/world.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/paludis/environments/paludis/world.cc b/paludis/environments/paludis/world.cc index 5d5af6ca0..62d751c6f 100644 --- a/paludis/environments/paludis/world.cc +++ b/paludis/environments/paludis/world.cc @@ -55,9 +55,7 @@ World::World(const Environment * const e, const std::shared_ptr<const FSPath> & { } -World::~World() -{ -} +World::~World() = default; bool World::add_to_world(const SetName & s) const |