Remove unnecessary reference pass

This commit is contained in:
Marek Roszko 2021-02-01 08:17:59 -05:00
parent bf2e7215a5
commit a4698d7f9e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public:
bool empty() const { return m_s.empty(); }
std::string::size_type find( char c ) const { return m_s.find( c ); }
std::string::size_type find( char c, size_t& s ) const { return m_s.find( c, s ); }
std::string::size_type find( char c, size_t s ) const { return m_s.find( c, s ); }
void clear() { m_s.clear(); }
std::string::size_type length() const { return m_s.length(); }