| Summary: | The parser doesn't find all the structures | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Amilcar do Carmo Lucas <a.lucas> |
| Component: | Language Support: CPP (old) | Assignee: | KDevelop-Devel List <kdevelop-devel> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
This works on KDevelop3 Alpha4 Moving all the bugs from the CPP Parser. It was not well defined the difference between it and C++ Language Support and people kept reporting in both places indistinctively |
Version: (using KDE KDE 3.1) Installed from: SuSE RPMs Compiler: gcc 2.95.3 OS: Linux I have some structures on some .h files in a Subproject folder. This .h files are included in the project. The structures that are declared like the folowing get parsed: struct t_bankstates { int cnt; //!< Bank state machine counter t_bankstate state; //!< Current state t_bankstate state_trace; //!< Current state, trace output }; The structures that are declared like the next don't: typedef struct{ sc_in<bool> clock; ///< Input the clock signal sc_in< SPIXEL > data; ///< Input pixel data sc_out<bool> enable; ///< Input enable signal sc_in<bool> strobe; ///< Input signal strobe }busP_dpu_from_dpu;