Skip to content

Commit 2a26663

Browse files
committed
Merge branch 'release/0.56'
2 parents 5e6e797 + 5213022 commit 2a26663

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

scripts/ddl2cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,6 @@ def repl_func_for_args(m):
7474
else:
7575
return m.group(1) + m.group(2).upper()
7676

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-
8577
def setArgumentBool(s, bool_value):
8678
first_lower = lambda s: s[:1].lower() + s[1:] if s else '' # http://stackoverflow.com/a/3847369/5006740
8779
var_name = first_lower(re.sub("(\s|-|[0-9])(\S)", repl_func_for_args, s))

0 commit comments

Comments
 (0)