mirror of
https://github.com/openvswitch/ovs
synced 2025-08-30 22:05:19 +00:00
ovsdb-idl: Avoid mutable type specifier.
In C++, 'mutable' is a keyword. If this is used as the name for a field, then C++ compilers can get confused about the context and fail to compile references to such fields. Rename the field to 'is_mutable' to avoid this issue. Signed-off-by: Joe Stringer <joe@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
@@ -89,7 +89,7 @@ struct ovsdb_idl_row {
|
||||
struct ovsdb_idl_column {
|
||||
char *name;
|
||||
struct ovsdb_type type;
|
||||
bool mutable;
|
||||
bool is_mutable;
|
||||
void (*parse)(struct ovsdb_idl_row *, const struct ovsdb_datum *);
|
||||
void (*unparse)(struct ovsdb_idl_row *);
|
||||
};
|
||||
|
@@ -2871,7 +2871,7 @@ bool
|
||||
ovsdb_idl_is_mutable(const struct ovsdb_idl_row *row,
|
||||
const struct ovsdb_idl_column *column)
|
||||
{
|
||||
return column->mutable || (row->new && !row->old);
|
||||
return column->is_mutable || (row->new && !row->old);
|
||||
}
|
||||
|
||||
/* Returns false if 'row' was obtained from the IDL, true if it was initialized
|
||||
|
@@ -1268,7 +1268,7 @@ void
|
||||
.type = {
|
||||
%(type)s
|
||||
},
|
||||
.mutable = %(mutable)s,
|
||||
.is_mutable = %(mutable)s,
|
||||
.parse = %(s)s_parse_%(c)s,
|
||||
.unparse = %(s)s_unparse_%(c)s,
|
||||
},\n""" % {'P': prefix.upper(),
|
||||
|
Reference in New Issue
Block a user