treewide: prevent redefining names

gcc dislikes a member name that matches a type name, as it changes
the type name retroactively. Fix by fully-qualifying the type name,
so it is not changed by the newly-introduced member.
This commit is contained in:
Avi Kivity
2023-03-19 19:05:32 +02:00
parent 7ab65379b9
commit 7bb717d2f9
6 changed files with 11 additions and 11 deletions

View File

@@ -111,7 +111,7 @@ public:
return _row.is_live(s, column_kind(), base_tombstone, now);
}
column_kind column_kind() const {
::column_kind column_kind() const {
return _key.has_value()
? column_kind::regular_column : column_kind::static_column;
}