We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7522b7b + e25e0b3 commit fd27d8aCopy full SHA for fd27d8a
src/cpp/cpp_typecheck_bases.cpp
@@ -155,7 +155,7 @@ void cpp_typecheckt::add_base_components(
155
156
const symbolt &symb = lookup(b.type());
157
158
- const bool is_virtual = b.get_bool(ID_virtual);
+ const bool is_virtual_base = b.get_bool(ID_virtual);
159
160
// recursive call
161
add_base_components(
@@ -164,7 +164,7 @@ void cpp_typecheckt::add_base_components(
164
to,
165
bases,
166
vbases,
167
- is_virtual);
+ is_virtual_base);
168
}
169
170
// add the components
0 commit comments