Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/SemanticError.h

    r4358c1e r77bfc80  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed May 16 15:01:23 2018
    13 // Update Count     : 30
     12// Last Modified On : Thu Jul 19 10:09:17 2018
     13// Update Count     : 31
    1414//
    1515
     
    1717
    1818#include "ErrorObjects.h"
     19#include "AST/Node.hpp"
    1920#include <cstring>
    2021
     
    5657        {"reference-conversion"   , "rvalue to reference conversion of rvalue: %s" , Severity::Warn},
    5758        {"qualifiers-zero_t-one_t", "questionable use of type qualifier %s with %s", Severity::Warn},
     59        {"aggregate-forward-decl" , "forward declaration of nested aggregate: %s"  , Severity::Warn},
     60        {"superfluous-decl"       , "declaration does not allocate storage: %s"    , Severity::Warn},
     61        {"gcc-attributes"         , "invalid attribute: %s"                        , Severity::Warn},
    5862};
    5963
     
    6266        RvalueToReferenceConversion,
    6367        BadQualifiersZeroOne,
    64         NUMBER_OF_WARNINGS, //This MUST be the last warning
     68        AggrForwardDecl,
     69        SuperfluousDecl,
     70        GccAttributes,
     71        NUMBER_OF_WARNINGS, // This MUST be the last warning
    6572};
    6673
Note: See TracChangeset for help on using the changeset viewer.