Changes in src/Common/SemanticError.h [4358c1e:77bfc80]
- File:
-
- 1 edited
-
src/Common/SemanticError.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/SemanticError.h
r4358c1e r77bfc80 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed May 16 15:01:23201813 // Update Count : 3 012 // Last Modified On : Thu Jul 19 10:09:17 2018 13 // Update Count : 31 14 14 // 15 15 … … 17 17 18 18 #include "ErrorObjects.h" 19 #include "AST/Node.hpp" 19 20 #include <cstring> 20 21 … … 56 57 {"reference-conversion" , "rvalue to reference conversion of rvalue: %s" , Severity::Warn}, 57 58 {"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}, 58 62 }; 59 63 … … 62 66 RvalueToReferenceConversion, 63 67 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 65 72 }; 66 73
Note:
See TracChangeset
for help on using the changeset viewer.