From c235b635729bf34eb808d77a881698cd0af41662 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 20 Jun 2015 11:49:53 -0700 Subject: [PATCH] CLI2: Added ::unTag --- src/CLI2.cpp | 2 +- src/CLI2.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 5a7a0e8cf..da408af46 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -98,7 +98,6 @@ void A2::tag (const std::string& tag) _tags.push_back (tag); } -/* //////////////////////////////////////////////////////////////////////////////// void A2::unTag (const std::string& tag) { @@ -112,6 +111,7 @@ void A2::unTag (const std::string& tag) } } +/* //////////////////////////////////////////////////////////////////////////////// void A2::unTagAll () { diff --git a/src/CLI2.h b/src/CLI2.h index f6afd4c62..a5f54b614 100644 --- a/src/CLI2.h +++ b/src/CLI2.h @@ -43,8 +43,8 @@ public: A2& operator= (const A2&); bool hasTag (const std::string&) const; void tag (const std::string&); -/* void unTag (const std::string&); +/* void unTagAll (); */ void attribute (const std::string&, const std::string&);