- Timestamp:
- Aug 31, 2021, 1:49:10 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
- Children:
- 1764a63
- Parents:
- 5993b6a
- git-author:
- Jacob Prud'homme <jafprudhomme@…> (08/10/21 17:00:53)
- git-committer:
- Jacob Prud'homme <jafprudhomme@…> (08/31/21 01:49:10)
- Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.cfa
r5993b6a r247d4ac 13 13 void ?{}( Parse_Failure & this ) with ( this ) { 14 14 virtual_table = &Parse_Failure_vt; 15 }16 17 static vtable(Unknown_Config_Format) Unknown_Config_Format_vt;18 19 void ?{}( Unknown_Config_Format & this ) with ( this ) {20 virtual_table = &Unknown_Config_Format_vt;21 15 } 22 16 … … 115 109 case TABULAR_CONFIG: 116 110 kv_pairs = parse_tabular_config_format( config_file, num_entries ); 117 default:118 serr | "Error: config file format " | format | " is not supported";119 throw (Unknown_Config_Format){};120 111 } 121 112 -
libcfa/src/parseconfig.hfa
r5993b6a r247d4ac 60 60 void ?{}( Parse_Failure & this ); 61 61 62 exception Unknown_Config_Format {};63 64 void ?{}( Unknown_Config_Format & this );65 66 62 exception Validation_Failure {}; 67 63
Note: See TracChangeset
for help on using the changeset viewer.