This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 240805 - Doccumentation from within /** comment */ is not visible for #define
Summary: Doccumentation from within /** comment */ is not visible for #define
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-22 08:30 UTC by mariusz_m
Modified: 2014-02-19 02:45 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description mariusz_m 2014-01-22 08:30:52 UTC
Hello,
for the following code

/** wejście do sekcji krytycznej (przerwania nieaktywne) */
#define CRITICAL_ENTER()		{ }
/** opuszczenie sekcji krytycznej (aktywacja przerwań) */
#define CRITICAL_EXIT()			{ }
/** wydłużenie trwającej sekcji krytycznej do 16000 cykli */
#define CRITICAL_ELONGATE()		{ }

documentations are not shown (No documentation found.)

But if I change the code as below (each docu line preceded by empty line), it works.

/** wejście do sekcji krytycznej (przerwania nieaktywne) */
#define CRITICAL_ENTER()		{ }

/** opuszczenie sekcji krytycznej (aktywacja przerwań) */
#define CRITICAL_EXIT()			{ }

/** wydłużenie trwającej sekcji krytycznej do 16000 cykli */
#define CRITICAL_ELONGATE()		{ }


Product Version = NetBeans IDE 7.4 (Build 201310111528)
Operating System = Windows 7 version 6.1 running on x86
Java; VM; Vendor = 1.7.0_51
Runtime = Java HotSpot(TM) Client VM 24.51-b03
Comment 1 Alexander Simon 2014-02-18 08:18:55 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/aa39f5e1491f
Comment 2 Quality Engineering 2014-02-19 02:45:03 UTC
Integrated into 'main-silver', will be available in build *201402190001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/aa39f5e1491f
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #240805 Doccumentation from within /** comment */ is not visible for #define