From e701d6d6075215759c1b720385a4dbc2679ac8a4 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 14 Jun 2015 14:13:02 -0400 Subject: [PATCH] CLI2: Eliminated unused ::removeAttribute. --- src/CLI2.cpp | 7 ------- src/CLI2.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index c6879c0cf..2bec17bcb 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -176,13 +176,6 @@ const std::string A2::attribute (const std::string& name) const return ""; } -/* -//////////////////////////////////////////////////////////////////////////////// -void A2::removeAttribute (const std::string& name) -{ - _attributes.erase (name); -} -*/ //////////////////////////////////////////////////////////////////////////////// const std::string A2::dump () const { diff --git a/src/CLI2.h b/src/CLI2.h index ed21e000d..6e010dfd8 100644 --- a/src/CLI2.h +++ b/src/CLI2.h @@ -61,9 +61,6 @@ public: void attribute (const std::string&, const double); */ const std::string attribute (const std::string&) const; -/* - void removeAttribute (const std::string&); -*/ const std::string dump () const; public: