Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.cfa

    r4bb5d36 r86530e7  
    1414
    1515
    16 #pragma GCC visibility push(default)
    17 
    1816// *********************************** exceptions ***********************************
    1917
    2018
    2119// TODO: Add names of missing config entries to exception (see further below)
    22 vtable(Missing_Config_Entries) Missing_Config_Entries_vt;
     20static vtable(Missing_Config_Entries) Missing_Config_Entries_vt;
    2321
    2422[ void ] ?{}( & Missing_Config_Entries this, unsigned int num_missing ) {
     
    3331
    3432
    35 vtable(Parse_Failure) Parse_Failure_vt;
     33static vtable(Parse_Failure) Parse_Failure_vt;
    3634
    3735[ void ] ?{}( & Parse_Failure this, [] char failed_key, [] char failed_value ) {
     
    5553
    5654
    57 vtable(Validation_Failure) Validation_Failure_vt;
     55static vtable(Validation_Failure) Validation_Failure_vt;
    5856
    5957[ void ] ?{}( & Validation_Failure this, [] char failed_key, [] char failed_value ) {
     
    112110
    113111
    114 static [ bool ] comments( & ifstream in, [] char name ) {
     112[ bool ] comments( & ifstream in, [] char name ) {
    115113        while () {
    116114                in | name;
Note: See TracChangeset for help on using the changeset viewer.