From 80dc8c465746f152b1654dc752ad0ba127c2b054 Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Tue, 23 Jun 2015 23:56:57 -0400 Subject: Refactored Argument::~Argument() to use C++ default keyword instead of an empty body to clarify intent --- include/argument.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/argument.h b/include/argument.h index ab4faf7..f7fb782 100644 --- a/include/argument.h +++ b/include/argument.h @@ -25,7 +25,7 @@ public: /** * Destructor */ - virtual ~Argument() {} + virtual ~Argument() = default; protected: /** -- cgit v1.2.3