| Summary: | kdevelop cannot parse typeid values | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Rafał Malinowski <rafal.przemyslaw.malinowski> |
| Component: | Language Support: CPP (old) | Assignee: | kdevelop-bugs-null |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
I think we already have another report open about typeid, but I can't find it right now. marking as duplicate. *** This bug has been marked as a duplicate of bug 207377 *** |
Version: (using Devel) OS: Linux Installed from: Compiled sources Following file is valid C++ file: #include <typeinfo> #include <stdio.h> class X { }; void test() { X *object; printf("type: %s\n", typeid(object).name()); } But kdevelop marks line with printf as invalid (does not accept .name() as valid).