Closed
Bug 196050
Opened 22 years ago
Closed 12 years ago
comment in nsDoubleHashtable suggests const modifier for keys already in the macros
Categories
(Core :: XPCOM, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: axel, Unassigned)
Details
nsDoubleHashtable.h has a good comment on it's usage, but one little bug.
* (2) Create the hash class
*
* The final hash class you will use in step 3 is defined by 2 macros.
*
* DECL_DHASH_WRAPPER(Dictionary, DictionaryEntry, const nsAString&)
* DHASH_WRAPPER(Dictionary, DictionaryEntry, const nsAString&)
should be
* DECL_DHASH_WRAPPER(Dictionary, DictionaryEntry, nsAString&)
* DHASH_WRAPPER(Dictionary, DictionaryEntry, nsAString&)
as the const modifier is already in the macro definition.
Following this gives bogus warnings.
Updated•19 years ago
|
Assignee: john → nobody
QA Contact: scc → xpcom
Comment 1•12 years ago
|
||
Please just remove doublehash, if it isn't already gone.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•