Changeset ad8072c for libcfa/src
- 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:
- e74ba77
- Parents:
- c58c65a
- git-author:
- Jacob Prud'homme <jafprudhomme@…> (07/23/21 11:51:10)
- git-committer:
- Jacob Prud'homme <jafprudhomme@…> (08/31/21 01:49:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.hfa
rc58c65a rad8072c 21 21 this.variable = (void *)&variable; 22 22 this.parse = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse; 23 this.validate = 0p;23 this.validate = (bool (*)(void *))(bool (*)(T &))0p; 24 24 } 25 25 … … 37 37 this.variable = (void *)&variable; 38 38 this.parse = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse; 39 this.validate = 0p;39 this.validate = (bool (*)(void *))(bool (*)(T &))0p; 40 40 } 41 41
Note: See TracChangeset
for help on using the changeset viewer.