Removed unused variable.

This commit is contained in:
yhirose 2015-06-12 21:14:10 -04:00
parent cfcba98e8f
commit 4dc334e481

View File

@ -1480,8 +1480,7 @@ public:
MatchAction ma, MatchAction ma,
Log log) Log log)
{ {
static PEGParser instance; return get_instance().perform_core(s, n, rules, start, ma, log);
return get().perform_core(s, n, rules, start, ma, log);
} }
static std::shared_ptr<Grammar> parse( static std::shared_ptr<Grammar> parse(
@ -1497,11 +1496,11 @@ public:
// For debuging purpose // For debuging purpose
static Grammar& grammar() { static Grammar& grammar() {
return get().g; return get_instance().g;
} }
private: private:
static PEGParser& get() { static PEGParser& get_instance() {
static PEGParser instance; static PEGParser instance;
return instance; return instance;
} }