From d382483fa76028c2d34f75067bff45306c6da34e Mon Sep 17 00:00:00 2001 From: Loic Blot Date: Sat, 19 Aug 2017 09:29:55 +0200 Subject: Code modernization: src/m* (part 3) * empty function * default constructor/destructor * for range-based loops * use emplace_back instead of push_back * remove some unused headers in some cpp variable --- src/metadata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/metadata.h') diff --git a/src/metadata.h b/src/metadata.h index f923e6ff0..d95a0ed5d 100644 --- a/src/metadata.h +++ b/src/metadata.h @@ -27,7 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc., class Metadata { public: - virtual ~Metadata() {} + virtual ~Metadata() = default; virtual void clear(); virtual bool empty() const; -- cgit v1.2.3