fixed variable name

[Section 18: Unknown Unkowns] 
In my test, the reference of an unknown unknown could only be obtained from unknown_var_symbol_table, not from symbol_table.
This commit is contained in:
Michael Specht 2019-03-24 19:08:38 +01:00 committed by GitHub
parent 9fad72832c
commit e3d4bc6c9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2893,7 +2893,7 @@ after which the expression itself can be evaluated.
for (auto& var_name : variable_list)
{
T& v = symbol_table.variable_ref(var_name);
T& v = unknown_var_symbol_table.variable_ref(var_name);
v = ...;
}