Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 355340 Details for
Bug 475280
app-office/calligra could use dev-libs/vc, a SIMD vectorization helper / abstraction library
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
this is that patch to get calligra 2.7.1 to build against gcc 4.8.1
gcc-4.8.1-rvalue-error.patch (text/plain), 831 bytes, created by
ewomer
on 2013-08-07 15:35:26 UTC
(
hide
)
Description:
this is that patch to get calligra 2.7.1 to build against gcc 4.8.1
Filename:
MIME Type:
Creator:
ewomer
Created:
2013-08-07 15:35:26 UTC
Size:
831 bytes
patch
obsolete
>Index: gcc/testsuite/g++.dg/parse/ref-qual2.C >=================================================================== >--- gcc/testsuite/g++.dg/parse/ref-qual2.C (revision 0) >+++ gcc/testsuite/g++.dg/parse/ref-qual2.C (revision 200836) >@@ -0,0 +1,6 @@ >+// PR c++/57532 >+ >+int main() >+{ >+ return (int() & int()); >+} >Index: gcc/cp/parser.c >=================================================================== >--- gcc/cp/parser.c (revision 200835) >+++ gcc/cp/parser.c (revision 200836) >@@ -16986,6 +16986,11 @@ > { > cp_ref_qualifier ref_qual = REF_QUAL_NONE; > cp_token *token = cp_lexer_peek_token (parser->lexer); >+ >+ /* Don't try to parse bitwise '&' as a ref-qualifier (c++/57532). */ >+ if (cxx_dialect < cxx11 && cp_parser_parsing_tentatively (parser)) >+ return ref_qual; >+ > switch (token->type) > { > case CPP_AND:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 475280
:
353638
| 355340