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:
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)
Message:

Fixed type warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.hfa

    rc58c65a rad8072c  
    2121        this.variable = (void *)&variable;
    2222        this.parse    = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse;
    23         this.validate = 0p;
     23        this.validate = (bool (*)(void *))(bool (*)(T &))0p;
    2424}
    2525
     
    3737        this.variable = (void *)&variable;
    3838        this.parse    = (bool (*)(const char *, void *))(bool (*)(const char *, T &))parse;
    39         this.validate = 0p;
     39        this.validate = (bool (*)(void *))(bool (*)(T &))0p;
    4040}
    4141
Note: See TracChangeset for help on using the changeset viewer.