Changes in libcfa/src/parseconfig.cfa [4bb5d36:86530e7]
- File:
-
- 1 edited
-
libcfa/src/parseconfig.cfa (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.cfa
r4bb5d36 r86530e7 14 14 15 15 16 #pragma GCC visibility push(default)17 18 16 // *********************************** exceptions *********************************** 19 17 20 18 21 19 // TODO: Add names of missing config entries to exception (see further below) 22 vtable(Missing_Config_Entries) Missing_Config_Entries_vt;20 static vtable(Missing_Config_Entries) Missing_Config_Entries_vt; 23 21 24 22 [ void ] ?{}( & Missing_Config_Entries this, unsigned int num_missing ) { … … 33 31 34 32 35 vtable(Parse_Failure) Parse_Failure_vt;33 static vtable(Parse_Failure) Parse_Failure_vt; 36 34 37 35 [ void ] ?{}( & Parse_Failure this, [] char failed_key, [] char failed_value ) { … … 55 53 56 54 57 vtable(Validation_Failure) Validation_Failure_vt;55 static vtable(Validation_Failure) Validation_Failure_vt; 58 56 59 57 [ void ] ?{}( & Validation_Failure this, [] char failed_key, [] char failed_value ) { … … 112 110 113 111 114 static[ bool ] comments( & ifstream in, [] char name ) {112 [ bool ] comments( & ifstream in, [] char name ) { 115 113 while () { 116 114 in | name;
Note:
See TracChangeset
for help on using the changeset viewer.