jamoma / JamomaCore

Jamoma Frameworks for Audio and Control Structure
Other
36 stars 14 forks source link

Clean up initialization of data members #344

Open tap opened 9 years ago

tap commented 9 years ago

C++11 introduced the ability to initialize non-static data members in a sane way, finally, hooray!

Using braced initialization, the initial value can be specified in the class declaration (i.e. header file) instead of separately (and repeatedly/duplicately) in the far away constructor definition.

While doing this sweep we should ensure that we are initializing all of our members.