Code Cleanup

- Removed non-STL Nibbler method, which makes way for a future optimization
  in the form of a non-copying Nibbler.
This commit is contained in:
Paul Beckingham 2012-02-05 15:28:09 -05:00
parent c0f8ab3249
commit cffc42484e
2 changed files with 0 additions and 9 deletions

View file

@ -49,14 +49,6 @@ Nibbler::Nibbler ()
{
}
////////////////////////////////////////////////////////////////////////////////
Nibbler::Nibbler (const char* input)
: _input (input)
, _length (strlen (input))
, _cursor (0)
{
}
////////////////////////////////////////////////////////////////////////////////
Nibbler::Nibbler (const std::string& input)
: _input (input)