- Timestamp:
- Aug 31, 2021, 1:49:09 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
- Children:
- e54654e
- Parents:
- 8f01cb04
- git-author:
- Jacob Prud'homme <jafprudhomme@…> (07/16/21 15:17:02)
- git-committer:
- Jacob Prud'homme <jafprudhomme@…> (08/31/21 01:49:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.hfa
r8f01cb04 r4cc6c7d 13 13 this.key = key; 14 14 this.variable = (void *)&variable; 15 this.parse = (bool (*)(const char *, void *)) parse;15 this.parse = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse; 16 16 } 17 17 … … 20 20 this.key = key; 21 21 this.variable = (void *)&variable; 22 this.parse = (bool (*)(const char *, void *)) parse;22 this.parse = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse; 23 23 } 24 24
Note: See TracChangeset
for help on using the changeset viewer.