https://defect.opensolaris.org/bz/show_bug.cgi?id=18163

           Summary: C++ keywords is not recognized in xref output
    Classification: Development
           Product: opengrok
           Version: unspecified
          Platform: ANY/Generic
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: P3
         Component: indexer
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


In OpenGrok version 0.10, c++ keywords is not recognized in xref pages.

The following change in CxxXref.lex can fix this problem.

 {Identifier} {
     String id = yytext();
-    writeSymbol(id, Consts.kwd, yyline);
+    writeSymbol(id, CxxConsts.kwd, yyline);
 }

-- 
Configure bugmail: https://defect.opensolaris.org/bz/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
opengrok-dev mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/opengrok-dev

Reply via email to