Skip to content

Commit 7575300

Browse files
committed
clang: remove pointless ; at the end of function
Signed-off-by: Rosen Penev <[email protected]>
1 parent 5be42f1 commit 7575300

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/exiv2/xmp_exiv2.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,23 +222,23 @@ class EXIV2API XmpData {
222222
//! are we to use the packet?
223223
[[nodiscard]] bool usePacket() const {
224224
return usePacket_;
225-
};
225+
}
226226

227227
//! set usePacket_
228228
bool usePacket(bool b) {
229229
bool r = usePacket_;
230230
usePacket_ = b;
231231
return r;
232-
};
232+
}
233233
//! setPacket
234234
void setPacket(std::string xmpPacket) {
235235
xmpPacket_ = std::move(xmpPacket);
236236
usePacket(false);
237-
};
237+
}
238238
// ! getPacket
239239
[[nodiscard]] const std::string& xmpPacket() const {
240240
return xmpPacket_;
241-
};
241+
}
242242

243243
//@}
244244

0 commit comments

Comments
 (0)