type modifiers are lost for any int type (long, short, unsigned, etc.) also happens to long double also happens with char auto is also influenced by this Reproducible: Always Steps to Reproduce: 1. Open a c++ file 2. simple test case to put in #include <sys/epoll.h> decltype(epoll_event::events) i; 3. hover over i Actual Results: tooltip says type of i is int Expected Results: tooltip says type of i is the same as epoll_event::events (uint32_t here, which is unsigned int)
This seems to affect auto too: unsigned long int x; auto y = x; The tooltip for y says 'int', dropping the 'unsigned' and 'long' modifiers.