Closed
Bug 798564
Opened 13 years ago
Closed 12 years ago
remove prtypes.h #includes in modules/libmar/
Categories
(Core :: General, defect)
Core
General
Tracking
()
RESOLVED
FIXED
mozilla21
People
(Reporter: froydnj, Assigned: froydnj)
References
(Blocks 1 open bug)
Details
Attachments
(1 file, 1 obsolete file)
5.16 KB,
patch
|
ehsan.akhgari
:
review+
|
Details | Diff | Splinter Review |
No description provided.
![]() |
Assignee | |
Comment 1•13 years ago
|
||
Had to fix up some PR_STATIC_ASSERTS, too.
Comment 2•13 years ago
|
||
Comment on attachment 668609 [details] [diff] [review]
patch
Review of attachment 668609 [details] [diff] [review]:
-----------------------------------------------------------------
::: modules/libmar/src/mar_private.h
@@ -13,5 @@
>
> -/* Code in this module requires a guarantee that the size
> - of uint32_t and uint64_t are 4 and 8 bytes respectively. */
> -PR_STATIC_ASSERT(sizeof(uint32_t) == 4);
> -PR_STATIC_ASSERT(sizeof(uint64_t) == 8);
lol!
Attachment #668609 -
Flags: review?(ehsan) → review+
![]() |
Assignee | |
Comment 3•13 years ago
|
||
Comment 4•13 years ago
|
||
Backed out because of Windows build failures: https://hg.mozilla.org/integration/mozilla-inbound/rev/a27a41c7d7e3
![]() |
Assignee | |
Comment 5•12 years ago
|
||
Let's try this again. The main sticking point was a use of PRUnichar in
mar.h. But AFAICS, this is just a matter of "PRUnicher is a handy wide-
character type" and it doesn't line up with the use of mar_wopen elsewhere.
Therefore, I propose using wchar_t here: the prototype it's used in is
platform-specific anyway, so I'd argue it's more correct than PRUnichar.
Attachment #668609 -
Attachment is obsolete: true
Attachment #705846 -
Flags: review?(ehsan)
Updated•12 years ago
|
Attachment #705846 -
Flags: review?(ehsan) → review+
![]() |
Assignee | |
Comment 6•12 years ago
|
||
Comment 7•12 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla21
Comment 8•12 years ago
|
||
(In reply to Nathan Froyd (:froydnj) from comment #5)
> Therefore, I propose using wchar_t here: the prototype it's used in is
> platform-specific anyway, so I'd argue it's more correct than PRUnichar.
Mmmmm wchar_t is 32-bits wide on linux and mac builds.
![]() |
Assignee | |
Comment 9•12 years ago
|
||
(In reply to Mike Hommey [:glandium] from comment #8)
> (In reply to Nathan Froyd (:froydnj) from comment #5)
> > Therefore, I propose using wchar_t here: the prototype it's used in is
> > platform-specific anyway, so I'd argue it's more correct than PRUnichar.
>
> Mmmmm wchar_t is 32-bits wide on linux and mac builds.
Indeed. But the particular usage in this patch is restricted to XP_WIN.
Comment 10•12 years ago
|
||
(In reply to comment #9)
> (In reply to Mike Hommey [:glandium] from comment #8)
> > (In reply to Nathan Froyd (:froydnj) from comment #5)
> > > Therefore, I propose using wchar_t here: the prototype it's used in is
> > > platform-specific anyway, so I'd argue it's more correct than PRUnichar.
> >
> > Mmmmm wchar_t is 32-bits wide on linux and mac builds.
>
> Indeed. But the particular usage in this patch is restricted to XP_WIN.
Might be worth adding a comment explaining why using wchar_t there is OK.
You need to log in
before you can comment on or make changes to this bug.
Description
•