Closed
Bug 960664
Opened 11 years ago
Closed 11 years ago
layout/forms/nsTextControlFrame.cpp:174:7: error: call to 'abs' is ambiguous (clang -stdlib=libc++)
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
RESOLVED
FIXED
mozilla29
People
(Reporter: jbeich, Assigned: jbeich)
References
Details
Attachments
(2 files)
1.11 KB,
patch
|
roc
:
review+
|
Details | Diff | Splinter Review |
795 bytes,
patch
|
roc
:
review-
|
Details | Diff | Splinter Review |
In file included from layout/forms/Unified_cpp_layout_forms1.cpp:20: layout/forms/nsTextControlFrame.cpp:174:7: error: call to 'abs' is ambiguous if (std::abs(charWidth - charMaxAdvance) > nsPresContext::CSSPixelsToAppUn... ^~~~~~~~ /usr/include/c++/v1/cmath:659:1: note: candidate function abs(float __x) _NOEXCEPT {return fabsf(__x);} ^ /usr/include/c++/v1/cmath:663:1: note: candidate function abs(double __x) _NOEXCEPT {return fabs(__x);} ^ /usr/include/c++/v1/cmath:667:1: note: candidate function abs(long double __x) _NOEXCEPT {return fabsl(__x);} ^ 1 error generated. while mfbt/ version leads to a warning (without cast) layout/forms/nsTextControlFrame.cpp:174:48: warning: comparison of integers of different signs: 'typename detail::AbsReturnType<int>::Type' (aka 'unsigned int') and 'nscoord' (aka 'int') [-Wsign-compare] ...mozilla::Abs(charWidth - charMaxAdvance) > nsPresContext::CSSPixelsToAppUnits(1)) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated.
Attachment #8361221 -
Flags: review?(robert)
gcc/libstdc++ implicitly includes <cstdlib> via <algorithm>
Attachment #8361226 -
Flags: review?(robert)
Attachment #8361221 -
Flags: review?(robert) → review+
Comment on attachment 8361226 [details] [diff] [review] explicitly include <cstdlib> for int abs(int) Review of attachment 8361226 [details] [diff] [review]: ----------------------------------------------------------------- Thanks!
Attachment #8361226 -
Flags: review?(robert) → review-
r+ patch to land as commit "Bug 960664 - Unbreak libc++ build after 358f4a9aac18 (bug 157846) by using mozilla::Abs. r=roc"
Keywords: checkin-needed
Comment 5•11 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/3687b6b2e48d Thanks for the patch, Jan. Please make sure you future patches have the commit information included (at least the name/email since you had a comment with the commit message). Thanks :) https://developer.mozilla.org/en-US/docs/Mercurial_FAQ#How_can_I_generate_a_patch_for_somebody_else_to_check-in_for_me.3F
Assignee: nobody → jbeich
Keywords: checkin-needed
Comment 6•11 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/3687b6b2e48d
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla29
You need to log in
before you can comment on or make changes to this bug.
Description
•