Changeset 74ec742 for libcfa/src/parseconfig.cfa
- Timestamp:
- May 20, 2022, 10:36:45 AM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 25fa20a
- Parents:
- 29d8c02 (diff), 7831e8fb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.cfa
r29d8c02 r74ec742 14 14 15 15 16 #pragma GCC visibility push(default) 17 16 18 // *********************************** exceptions *********************************** 17 19 18 20 19 21 // TODO: Add names of missing config entries to exception (see further below) 20 staticvtable(Missing_Config_Entries) Missing_Config_Entries_vt;22 vtable(Missing_Config_Entries) Missing_Config_Entries_vt; 21 23 22 24 [ void ] ?{}( & Missing_Config_Entries this, unsigned int num_missing ) { … … 31 33 32 34 33 staticvtable(Parse_Failure) Parse_Failure_vt;35 vtable(Parse_Failure) Parse_Failure_vt; 34 36 35 37 [ void ] ?{}( & Parse_Failure this, [] char failed_key, [] char failed_value ) { … … 53 55 54 56 55 staticvtable(Validation_Failure) Validation_Failure_vt;57 vtable(Validation_Failure) Validation_Failure_vt; 56 58 57 59 [ void ] ?{}( & Validation_Failure this, [] char failed_key, [] char failed_value ) { … … 110 112 111 113 112 [ bool ] comments( & ifstream in, [] char name ) {114 static [ bool ] comments( & ifstream in, [] char name ) { 113 115 while () { 114 116 in | name;
Note:
See TracChangeset
for help on using the changeset viewer.