From: Justin Pettit Date: Wed, 4 Mar 2015 07:45:18 +0000 (-0800) Subject: ovsdb-idlc: Remove "*_get_*" warning from header file. X-Git-Tag: v2.4.0~493 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=e8cc1bb13fc02ba0400e31ef270ef21d79399dbc ovsdb-idlc: Remove "*_get_*" warning from header file. The warning is now captured in the C file, which has documentation for all the public functions. Signed-off-by: Justin Pettit Acked-by: Ben Pfaff --- diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in index 4ef4f224e..1b7064c47 100755 --- a/ovsdb/ovsdb-idlc.in +++ b/ovsdb/ovsdb-idlc.in @@ -132,10 +132,7 @@ struct %(s)s *%(s)s_insert(struct ovsdb_idl_txn *); for columnName, column in sorted(table.columns.iteritems()): print 'void %(s)s_verify_%(c)s(const struct %(s)s *);' % {'s': structName, 'c': columnName} - print """ -/* Functions for fetching columns as \"struct ovsdb_datum\"s. (This is - rarely useful. More often, it is easier to access columns by using - the members of %(s)s directly.) */""" % {'s': structName} + print for columnName, column in sorted(table.columns.iteritems()): if column.type.value: valueParam = ', enum ovsdb_atomic_type value_type'