We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be42f1 commit 7575300Copy full SHA for 7575300
include/exiv2/xmp_exiv2.hpp
@@ -222,23 +222,23 @@ class EXIV2API XmpData {
222
//! are we to use the packet?
223
[[nodiscard]] bool usePacket() const {
224
return usePacket_;
225
- };
+ }
226
227
//! set usePacket_
228
bool usePacket(bool b) {
229
bool r = usePacket_;
230
usePacket_ = b;
231
return r;
232
233
//! setPacket
234
void setPacket(std::string xmpPacket) {
235
xmpPacket_ = std::move(xmpPacket);
236
usePacket(false);
237
238
// ! getPacket
239
[[nodiscard]] const std::string& xmpPacket() const {
240
return xmpPacket_;
241
242
243
//@}
244
0 commit comments