Changeset 32913bc for libcfa


Ignore:
Timestamp:
Aug 31, 2021, 11:54:07 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:
e22c841
Parents:
692db791
Message:

Fixed up comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.cfa

    r692db791 r32913bc  
    99
    1010
     11// TODO: Add names of missing config entries to exception (see further below)
    1112static vtable(Missing_Config_Entries) Missing_Config_Entries_vt;
    1213
     
    113114} // comments
    114115
    115 // Parse configuration from a file formatted in shell style
     116// Parse configuration from a file formatted in tabular (CS 343) style
    116117KVPairs * parse_tabular_config_format( const char * config_file, size_t num_entries ) {
    117118        // TODO: Change this to a unique_ptr when we fully support returning them (move semantics)
     
    126127
    127128                while () {                                                                      // parameter names can appear in any order
    128                         // Must add check to see if already read in a key-value pair,
     129                        // NOTE: Must add check to see if already read in value for this key,
    129130                        // once we switch to using hash table as intermediate storage
    130131                  if ( comments( in, key ) ) break;                     // eof ?
Note: See TracChangeset for help on using the changeset viewer.