LR0: No need to implement a do-nothing default constructor

This commit is contained in:
Paul Beckingham 2016-01-07 22:12:05 -05:00
parent 928597c425
commit 67b497733f
2 changed files with 0 additions and 6 deletions

View file

@ -33,11 +33,6 @@
#include <iostream>
#include <sstream>
////////////////////////////////////////////////////////////////////////////////
LR0::LR0 ()
{
}
////////////////////////////////////////////////////////////////////////////////
// Given a grammar:
// - Obtain the augmented grammar

View file

@ -35,7 +35,6 @@
class LR0
{
public:
LR0 ();
void initialize (const Grammar&);
void parse (const std::string&);
void debug (bool);