Closed
Bug 811214
Opened 12 years ago
Closed 12 years ago
Build failure in SpdySession3.cpp with clang 3.1
Categories
(Core :: Networking: HTTP, defect)
Tracking
()
RESOLVED
FIXED
mozilla19
People
(Reporter: glandium, Assigned: glandium)
References
Details
Attachments
(1 file)
1.05 KB,
patch
|
mcmanus
:
review+
|
Details | Diff | Splinter Review |
netwerk/protocol/http/SpdySession3.cpp:1873:20: error: expected a class or namespace
GenerateGoAway(goawayReason::OK);
^
1 error generated.
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Comment 2•12 years ago
|
||
Attachment #680973 -
Flags: review?(honzab.moz)
Assignee | ||
Updated•12 years ago
|
Assignee: nobody → mh+mozilla
Assignee | ||
Updated•12 years ago
|
Status: RESOLVED → REOPENED
Resolution: DUPLICATE → ---
Updated•12 years ago
|
Attachment #680973 -
Flags: review?(honzab.moz) → review+
ah, so I guess it was another instance of "clang, but not using c++11". Thanks!
Assignee | ||
Comment 5•12 years ago
|
||
(In reply to Rafael Ávila de Espíndola (:espindola) from comment #4)
> ah, so I guess it was another instance of "clang, but not using c++11".
> Thanks!
Ah indeed. And that's happening because of this:
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.7/../../../../include/c++/4.7/type_traits:256:39: error: use of undeclared identifier
'__float128'
struct __is_floating_point_helper<__float128>
^
1 error generated.
during the test for -std=gnu++0x.
Assignee | ||
Comment 6•12 years ago
|
||
which, essentially is http://llvm.org/bugs/show_bug.cgi?id=13530
Assignee | ||
Comment 7•12 years ago
|
||
![]() |
||
Comment 8•12 years ago
|
||
Status: REOPENED → RESOLVED
Closed: 12 years ago → 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla19
You need to log in
before you can comment on or make changes to this bug.
Description
•