CLI
- Removed unused ::clear method.
This commit is contained in:
@@ -98,14 +98,6 @@ A& A::operator= (const A& other)
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
|
||||||
void A::clear ()
|
|
||||||
{
|
|
||||||
_name = "";
|
|
||||||
_tags.clear ();
|
|
||||||
_attributes.clear ();
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool A::hasTag (const std::string& tag) const
|
bool A::hasTag (const std::string& tag) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -41,7 +41,6 @@ public:
|
|||||||
~A ();
|
~A ();
|
||||||
A (const A&);
|
A (const A&);
|
||||||
A& operator= (const A&);
|
A& operator= (const A&);
|
||||||
void clear ();
|
|
||||||
bool hasTag (const std::string&) const;
|
bool hasTag (const std::string&) const;
|
||||||
void tag (const std::string&);
|
void tag (const std::string&);
|
||||||
void unTag (const std::string&);
|
void unTag (const std::string&);
|
||||||
|
|||||||
Reference in New Issue
Block a user