Ignore:
Timestamp:
Aug 31, 2021, 1:49:09 AM (3 years ago)
Author:
Jacob Prud'homme <jafprudhomme@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
Children:
8f01cb04
Parents:
7582458
git-author:
Jacob Prud'homme <jafprudhomme@…> (07/16/21 15:06:54)
git-committer:
Jacob Prud'homme <jafprudhomme@…> (08/31/21 01:49:09)
Message:

Made some small changes

Comments, spacing, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.hfa

    r7582458 r58ebd78  
    44        const char * key;
    55        void * variable;
    6         bool (*parse)(const char *, void *);
     6        bool (*parse)( const char *, void * );
    77};
    88
    99static inline void ?{}( config_entry & this ) {}
    1010
    11 forall(T & | { bool parse(const char *, T & ); })
     11forall(T & | { bool parse( const char *, T & ); })
    1212static inline void ?{}( config_entry & this, const char * key, T & variable ) {
    1313        this.key      = key;
Note: See TracChangeset for help on using the changeset viewer.