Removed unused variable.

pull/3/head
yhirose 9 years ago
parent cfcba98e8f
commit 4dc334e481
  1. 7
      peglib.h

@ -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;
} }

Loading…
Cancel
Save