I have a struct with this definition
Expand|Select|Wrap|Line Numbers
- struct SeverityAction : public Action {
- uint32_t theSeverity; //*****
- public:
- SeverityAction(uint32_t aSeverity);
- ...
- };
Expand|Select|Wrap|Line Numbers
- /* Unsigned. */
- typedef unsigned char uint8_t;
- typedef unsigned short int uint16_t;
- #ifndef __uint32_t_defined
- typedef unsigned int uint32_t;
- # define __uint32_t_defined
- #endif
- #if __WORDSIZE == 64
- typedef unsigned long int uint64_t;
- #else
- __extension__
- typedef unsigned long long int uint64_t;
- #endif
Expand|Select|Wrap|Line Numbers
- error: ‘uint32_t’ does not name a type
- error: expected ‘)’ before ‘aSeverity’