Re: [Github-comments] [geany/geany-plugins] Use stdbool.h istead of redefining bool (#1053)

2021-01-06 Thread Frank Lanitz
Merged #1053 into master. -- 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-plugins/pull/1053#event-4175002682

Re: [Github-comments] [geany/geany-plugins] Use stdbool.h istead of redefining bool (#1053)

2021-01-05 Thread Matthew Brush
I believe this is a dupe of #1023 -- 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-plugins/pull/1053#issuecomment-754972321

Re: [Github-comments] [geany/geany-plugins] Use stdbool.h istead of redefining bool (#1053)

2021-01-05 Thread elextr
Seems reasonable to me, `stdbool.h` is a C99 header and `HACKING` says use C99, although I am curious what just changed that made it suddenly not compile? @b4n what say you oh ancient C guru? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or

[Github-comments] [geany/geany-plugins] Use stdbool.h istead of redefining bool (#1053)

2021-01-05 Thread Alexander F . Rødseth
Hi, Im maintaining the `geany-plugins` pacakge for Arch Linux. When compiling the latest version of geany-plugins, I get this error: ``` PrettyPrinter.h:55:22: error: two or more data types in declaration specifiers 55 | typedef unsigned int bool; | ^~~~ ```