clang: remove pointless ; at the end of function

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2022-07-04 21:45:06 -07:00
parent 5be42f132c
commit 7575300732

View File

@ -222,23 +222,23 @@ class EXIV2API XmpData {
//! are we to use the packet?
[[nodiscard]] bool usePacket() const {
return usePacket_;
};
}
//! set usePacket_
bool usePacket(bool b) {
bool r = usePacket_;
usePacket_ = b;
return r;
};
}
//! setPacket
void setPacket(std::string xmpPacket) {
xmpPacket_ = std::move(xmpPacket);
usePacket(false);
};
}
// ! getPacket
[[nodiscard]] const std::string& xmpPacket() const {
return xmpPacket_;
};
}
//@}