silence GCC8 warning on non default constructor

Signed-off-by: Rosen Penev <rosenp@gmail.com>
main
Rosen Penev 2 years ago
parent dae2b6dda8
commit c52bc0ff95

@ -259,7 +259,7 @@ ExifKey::ExifKey(const std::string& key) : p_(std::make_unique<Impl>()) {
p_->decomposeKey(key);
}
ExifKey::ExifKey(const ExifKey& rhs) : p_(std::make_unique<Impl>(*rhs.p_)) {
ExifKey::ExifKey(const ExifKey& rhs) : Key(rhs), p_(std::make_unique<Impl>(*rhs.p_)) {
}
ExifKey::~ExifKey() = default;

Loading…
Cancel
Save