Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseargs.hfa

    rfd54fef r80d3b1b  
    1414static inline void ?{}( cfa_option & this ) {}
    1515
    16 forall(T & | { bool parse(const char *, T & ); })
     16forall(dtype T | { bool parse(const char *, T & ); })
    1717static inline void ?{}( cfa_option & this, char short_name, const char * long_name, const char * help, T & variable ) {
    1818      this.val        = 0;
     
    2424}
    2525
    26 forall(T &)
     26forall(dtype T)
    2727static inline void ?{}( cfa_option & this, char short_name, const char * long_name, const char * help, T & variable, bool (*parse)(const char *, T & )) {
    2828      this.val        = 0;
Note: See TracChangeset for help on using the changeset viewer.