ref: 2f5f1e40166092e7aa7529328914a64d09ceacd2
parent: 0b2643bbfebb7b369724bdfbd2c090efbc1cfe39
author: Martin Hermant <martin.hermant@gmail.com>
date: Mon May 29 15:17:09 EDT 2017
gen_external.py : fix c_declaration cleaning messing with gen_code parsing of member pointers
--- a/python/lib/gen_external.py
+++ b/python/lib/gen_external.py
@@ -129,7 +129,7 @@
# clean pointer notations
tmp = []
for l in cpp_output:
- tmp += [l.replace(' *', '* ')]
+ tmp += [l.replace(' *', ' * ')]
cpp_output = tmp
return cpp_output