Ticket #3105 (assigned enhancement)
Take into account the types defined in stdint.h
| Reported by: | seb777 | Owned by: | seb777 |
|---|---|---|---|
| Priority: | Milestone: | ||
| Component: | Other | Keywords: | simplifyStdType stdint.h |
| Cc: |
Description
Tokenizer::simplifyStdType must take into account the types defined in stdint.h (C99) / cstdin (C + +) and proceed to simplitfication.
See http://en.wikipedia.org/wiki/Stdint.h
Example of code:
int f() {
uint8_t a;
uint16_t b;
uint32_t c;
uint64_t d;
int8_t e;
int16_t f;
int32_t g;
int64_t h;
return 0;
}
Attachments
Change History
Note: See
TracTickets for help on using
tickets.