summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 23:56:57 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 23:56:57 -0400
commit80dc8c465746f152b1654dc752ad0ba127c2b054 (patch)
tree7e871429e7a874fe238e07607ef57e87ce1548dd
parentf9c1034c789d69a63e7e5ffc387cc776b0a3c2f0 (diff)
Refactored Argument::~Argument() to use C++ default keyword instead of
an empty body to clarify intent
-rw-r--r--include/argument.h2
1 files changed, 1 insertions, 1 deletions
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:
/**