From 75753007321cc5208e44b3cd1c5d82fe3e902854 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 4 Jul 2022 21:45:06 -0700 Subject: [PATCH] clang: remove pointless ; at the end of function Signed-off-by: Rosen Penev --- include/exiv2/xmp_exiv2.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/exiv2/xmp_exiv2.hpp b/include/exiv2/xmp_exiv2.hpp index 064a46d7..f7e78a7c 100644 --- a/include/exiv2/xmp_exiv2.hpp +++ b/include/exiv2/xmp_exiv2.hpp @@ -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_; - }; + } //@}