Nibbler: Dead code removal

This commit is contained in:
Paul Beckingham 2015-07-17 14:50:20 -04:00
parent 49659e92a7
commit 9177c5b697
2 changed files with 0 additions and 10 deletions

View file

@ -1143,14 +1143,6 @@ bool Nibbler::backN (const int quantity /*= 1*/)
return false;
}
////////////////////////////////////////////////////////////////////////////////
void Nibbler::getRemainder (std::string& result)
{
if (_cursor < _length)
result = _input.substr (_cursor);
}
////////////////////////////////////////////////////////////////////////////////
bool Nibbler::skipAllOneOf (const std::string& chars)
{

View file

@ -98,8 +98,6 @@ public:
bool backN (const int quantity = 1);
void getRemainder (std::string&);
char next ();
std::string next (const int quantity);