Skip to content

Commit

Permalink
Refactore QString implementation of String.
Browse files Browse the repository at this point in the history
  • Loading branch information
igormironchik committed May 4, 2017
1 parent cfaf209 commit af04d16
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions Args/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,6 @@ class String {
{
}

String( const String & other )
: m_str( other.m_str )
{
}

String( const QString & other )
: m_str( other )
{
Expand All @@ -135,17 +130,6 @@ class String {
{
}

String & operator = ( const String & other )
{
m_str = other.m_str;

return *this;
}

~String()
{
}

operator QString ()
{
return m_str;
Expand Down

0 comments on commit af04d16

Please sign in to comment.