Changes in libcfa/src/parseargs.hfa [80d3b1b:fd54fef]
- File:
-
- 1 edited
-
libcfa/src/parseargs.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.hfa
r80d3b1b rfd54fef 14 14 static inline void ?{}( cfa_option & this ) {} 15 15 16 forall( dtype T| { bool parse(const char *, T & ); })16 forall(T & | { bool parse(const char *, T & ); }) 17 17 static inline void ?{}( cfa_option & this, char short_name, const char * long_name, const char * help, T & variable ) { 18 18 this.val = 0; … … 24 24 } 25 25 26 forall( dtype T)26 forall(T &) 27 27 static inline void ?{}( cfa_option & this, char short_name, const char * long_name, const char * help, T & variable, bool (*parse)(const char *, T & )) { 28 28 this.val = 0;
Note:
See TracChangeset
for help on using the changeset viewer.