Bug #18968 2013-04-12 20:32

fuzzy_wuzzy

Faulty doc. comment highlight after preprocessor directive

Documentation comments of the form /**comment*/ are colored as regular comments if they appear after a preprocessor directive (such as #define, #include, #ifdef, etc.). Example:

#define MAX 99 /**Incorrectly colored as regular comment.*/

#include <iostream> /**Incorrectly colored as regular comment.*/

#define MIN 1 ///Correctly colored as documentation comment.

int x; /**Correctly colored as documentation comment.*/

Category
Application::Editor
Group
 
Status
Open
Close date
 
Assigned to
 
fuzzy_wuzzy 2013-04-12 23:05

Tested it in SciTE, and the coloring there is correct, so it would appear the bug is on Code::Blocks' side.