Bug 229335 - kdevelop cannot parse typeid values
Summary: kdevelop cannot parse typeid values
Status: RESOLVED DUPLICATE of bug 207377
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (old) (other bugs)
Version First Reported In: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-04 00:47 UTC by Rafał Malinowski
Modified: 2010-06-16 00:40 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rafał Malinowski 2010-03-04 00:47:39 UTC
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).
Comment 1 Andreas Pakulat 2010-03-04 00:57:40 UTC
I think we already have another report open about typeid, but I can't find it right now.
Comment 2 Milian Wolff 2010-06-16 00:40:17 UTC
marking as duplicate.

*** This bug has been marked as a duplicate of bug 207377 ***