Ignore:
Timestamp:
Aug 31, 2021, 1:49:10 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:
5241ec2
Parents:
d322f62
git-author:
Jacob Prud'homme <jafprudhomme@…> (08/06/21 00:57:18)
git-committer:
Jacob Prud'homme <jafprudhomme@…> (08/31/21 01:49:10)
Message:

Added spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.cfa

    rd322f62 rf62e741  
    2525        * [ char *, char * ] data;
    2626};
     27
    2728void ?{}( KVPairs & kvp ) with ( kvp ) {                                // default constructor
    2829        size = 0; max_size = 0; data = 0p;
    2930}
     31
    3032void ?{}( KVPairs & kvp, size_t size ) {                                // initialization
    3133        kvp.[ size, max_size ] = [ 0, size ];
    3234        kvp.data = alloc( size );
    3335}
     36
    3437void ^?{}( KVPairs & kvp ) with ( kvp ) {                               // destructor
    3538        free( data );
Note: See TracChangeset for help on using the changeset viewer.