https://bugs.kde.org/show_bug.cgi?id=369840
Bug ID: 369840 Summary: kdevelop drops modifiers for types declared using decltype Product: kdevelop Version: git master Platform: unspecified OS: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: Language Support: CPP (Clang-based) Assignee: kdevelop-bugs-n...@kde.org Reporter: kitanat...@gmail.com 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) -- You are receiving this mail because: You are watching all bug changes.