Skip to content

Instantly share code, notes, and snippets.

@ilpropheta
Created January 1, 2017 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/51f32fce8fdab12e3269e70c28ed1c60 to your computer and use it in GitHub Desktop.
Save ilpropheta/51f32fce8fdab12e3269e70c28ed1c60 to your computer and use it in GitHub Desktop.
class StatefulParser
{
public:
StatefulParser(string_view current) : current(current) {}
//...
string_view current;
};
StatefulParser Parse(const string& current)
{
return {current};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment