Changeset 2a301ff for libcfa/src/parseconfig.hfa
- Timestamp:
- Aug 31, 2023, 11:31:15 PM (2 years ago)
- Branches:
- master
- Children:
- 950c58e
- Parents:
- 92355883 (diff), 686912c (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
-
libcfa/src/parseconfig.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseconfig.hfa
r92355883 r2a301ff 2 2 3 3 #include <math.trait.hfa> 4 #include <Exception.hfa> 4 5 5 6 … … 62 63 63 64 64 exception Missing_Config_Entries { 65 ExceptionDecl( Missing_Config_Entries, 65 66 unsigned int num_missing; 66 };67 ); 67 68 68 69 [ void ] msg( * Missing_Config_Entries ex ); 69 70 70 exception Parse_Failure { 71 ExceptionDecl( Parse_Failure, 71 72 * char failed_key; 72 73 * char failed_value; 73 };74 ); 74 75 75 76 [ void ] msg( * Parse_Failure ex ); 76 77 77 exception Validation_Failure { 78 ExceptionDecl( Validation_Failure, 78 79 * char failed_key; 79 80 * char failed_value; 80 };81 ); 81 82 82 83 [ void ] msg( * Validation_Failure ex );
Note:
See TracChangeset
for help on using the changeset viewer.