Changeset eea6101 for python


Ignore:
Timestamp:
May 30, 2017, 12:12:32 AM (7 years ago)
Author:
Martin Hermant <martin.hermant@gmail.com>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
8f343e6
Parents:
341585b
Message:

gen_external.py : clean preprocessor generated strings from stickin pointer notation : ‘ void *my_func()’ => ‘void* my_func()’

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/gen_external.py

    r341585b reea6101  
    122122            i += 1
    123123
     124    # clean pointer notations
     125    tmp = []
     126    for l in cpp_output:
     127        tmp+=[ l.replace(' *','* ')]
     128    cpp_output = tmp;
     129
     130
    124131    return cpp_output
    125132
Note: See TracChangeset for help on using the changeset viewer.