From 35b526957ee990111b26e40af4cdccebd3985625 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 2 Jan 2016 15:33:04 -0500 Subject: [PATCH] LR0: Fixed bug where local variable eclipsed member --- src/LR0.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LR0.cpp b/src/LR0.cpp index 8990b381..6ae79920 100644 --- a/src/LR0.cpp +++ b/src/LR0.cpp @@ -50,7 +50,7 @@ LR0::LR0 () void LR0::initialize (const Grammar& grammar) { // Obtain the augmented grammar. - auto _augmented = grammar.augmented (); + _augmented = grammar.augmented (); if (_debug) {