@elextr well he did mention it didn't compile with that `DEBUG_C` defined, but
it would be helpful to give the resulting compile error so everyone doesn't
have to re-compile themselves to see it.
```
parsers/c.c: In function ‘printTagEntry’:
parsers/c.c:555:7: error: ‘tagEntryInfo {aka const struct sTagEntryInfo}’ has
no member named ‘kindName’; did you mean ‘name’?
tag->kindName, tag->extensionFields.implementation,
tag->extensionFields.scope[1],
^~~~~~~~
name
parsers/c.c:555:75: error: ‘const struct <anonymous>’ has no member named
‘scope’; did you mean ‘scopeKind’?
tag->kindName, tag->extensionFields.implementation,
tag->extensionFields.scope[1],
^~~~~
scopeKind
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1923#issuecomment-412715924