projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5c7c7c
)
ovsdb: constify should apply to all pointer types.
author
Ethan Jackson
<ethan@nicira.com>
Wed, 24 Nov 2010 00:50:57 +0000
(16:50 -0800)
committer
Ethan Jackson
<ethan@nicira.com>
Mon, 29 Nov 2010 22:47:14 +0000
(14:47 -0800)
All pointers (except double stars) should be const-able in
ovsdb-idlc.in generated header files.
ovsdb/ovsdb-idlc.in
patch
|
blob
|
history
diff --git
a/ovsdb/ovsdb-idlc.in
b/ovsdb/ovsdb-idlc.in
index c6870cc3aedb3e1675e7cf718c611d47d7fb526c..4183089950dc57290d748b988eda3e66d0b327b4 100755
(executable)
--- a/
ovsdb/ovsdb-idlc.in
+++ b/
ovsdb/ovsdb-idlc.in
@@
-20,9
+20,7
@@
def annotateSchema(schemaFile, annotationFile):
ovs.json.to_stream(schemaJson, sys.stdout)
def constify(cType, const):
- if (const
- and cType.endswith('*') and not cType.endswith('**')
- and (cType.startswith('struct uuid') or cType.startswith('char'))):
+ if (const and cType.endswith('*') and not cType.endswith('**')):
return 'const %s' % cType
else:
return cType