Closed
Bug 1059490
Opened 11 years ago
Closed 11 years ago
mark more classes as final
Categories
(Core :: General, defect)
Tracking
()
RESOLVED
FIXED
mozilla35
People
(Reporter: tbsaunde, Assigned: tbsaunde)
Details
Attachments
(1 file)
|
31.32 KB,
patch
|
froydnj
:
review+
|
Details | Diff | Splinter Review |
No description provided.
| Assignee | ||
Comment 1•11 years ago
|
||
Attachment #8480112 -
Flags: review?(nfroyd)
Comment 2•11 years ago
|
||
Comment on attachment 8480112 [details] [diff] [review]
mark more classes MOZ_FINAL
Review of attachment 8480112 [details] [diff] [review]:
-----------------------------------------------------------------
r=me with the HAVE_VISIBILITY changes reverted.
::: memory/mozalloc/mozalloc_abort.h
@@ +14,5 @@
> // do nothing: it's been defined to __declspec(dllexport) by
> // mozalloc*.cpp on platforms where that's required
> #elif defined(XP_WIN)
> # define MOZALLOC_EXPORT __declspec(dllimport)
> +#elif __GNUC__ || __clang__
Um, different patch?
::: memory/mozalloc/mozalloc_oom.h
@@ +14,5 @@
> // do nothing: it's been defined to __declspec(dllexport) by
> // mozalloc*.cpp on platforms where that's required
> #elif defined(XP_WIN)
> # define MOZALLOC_EXPORT __declspec(dllimport)
> +#elif defined(__GNUC__) || defined(__clang__)
Here too.
::: mfbt/Types.h
@@ +39,5 @@
> */
> #if defined(WIN32)
> # define MOZ_EXPORT __declspec(dllexport)
> #else /* Unix */
> +# if __GNUC__ || __clang__
Here too.
Attachment #8480112 -
Flags: review?(nfroyd) → review+
| Assignee | ||
Comment 3•11 years ago
|
||
> r=me with the HAVE_VISIBILITY changes reverted.
erph, yeah that stuff is a silly mistake on my part.
| Assignee | ||
Comment 4•11 years ago
|
||
Comment 5•11 years ago
|
||
Assignee: nobody → trev.saunders
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla35
Updated•11 years ago
|
Flags: qe-verify-
You need to log in
before you can comment on or make changes to this bug.
Description
•