From 2f5f1e40166092e7aa7529328914a64d09ceacd2 Mon Sep 17 00:00:00 2001 From: Martin Hermant Date: Mon, 29 May 2017 19:17:09 -0400 Subject: [PATCH] gen_external.py : fix c_declaration cleaning messing with gen_code parsing of member pointers --- python/lib/gen_external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0