From: Martin Hermant Date: Mon, 29 May 2017 23:17:09 +0000 (-0400) Subject: gen_external.py : fix c_declaration cleaning messing with gen_code parsing of member... X-Git-Tag: 0.4.6~52^2~7 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=2f5f1e40166092e7aa7529328914a64d09ceacd2;p=aubio.git gen_external.py : fix c_declaration cleaning messing with gen_code parsing of member pointers --- diff --git a/python/lib/gen_external.py b/python/lib/gen_external.py index c8ab1744..c559ca87 100644 --- a/python/lib/gen_external.py +++ b/python/lib/gen_external.py @@ -129,7 +129,7 @@ def get_c_declarations(header=header, usedouble=False): # clean pointer notations tmp = [] for l in cpp_output: - tmp += [l.replace(' *', '* ')] + tmp += [l.replace(' *', ' * ')] cpp_output = tmp return cpp_output