Lexer: Removed unnecessary ::ambiguity method

This commit is contained in:
Paul Beckingham 2015-07-01 16:18:28 -04:00
parent 8e8b2f9f38
commit b090c6bccf
4 changed files with 0 additions and 16 deletions

View file

@ -53,7 +53,6 @@ public:
Lexer (const std::string&);
~Lexer ();
void ambiguity (bool);
bool token (std::string&, Lexer::Type&);
static std::vector <std::pair <std::string, Lexer::Type>> tokens (const std::string&);
static std::vector <std::string> split (const std::string&);
@ -109,7 +108,6 @@ private:
std::string _text;
std::size_t _cursor;
std::size_t _eos;
bool _ambiguity;
};
#endif