1
0
mirror of https://github.com/yhirose/cpp-peglib.git synced 2025-01-09 17:25:29 +00:00

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