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 5e6e797 + 5213022 commit 2a26663Copy full SHA for 2a26663
scripts/ddl2cpp
@@ -74,14 +74,6 @@ def repl_func_for_args(m):
74
else:
75
return m.group(1) + m.group(2).upper()
76
77
-def toClassName(s):
78
- return re.sub("(^|\s|[_0-9])(\S)", repl_func, s)
79
-
80
81
-def toMemberName(s):
82
- return re.sub("(\s|_|[0-9])(\S)", repl_func, s)
83
84
85
def setArgumentBool(s, bool_value):
86
first_lower = lambda s: s[:1].lower() + s[1:] if s else '' # http://stackoverflow.com/a/3847369/5006740
87
var_name = first_lower(re.sub("(\s|-|[0-9])(\S)", repl_func_for_args, s))
0 commit comments