https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93689
bastien penavayre changed:
What|Removed |Added
CC||bastien.penavayre at epitech
dot e
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93689
--- Comment #7 from bastien penavayre ---
somewhat related 93595 ( https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93595 )
is still in UNCONFIRMED state.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81999
bastien penavayre changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRMED
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
code:
```
template // 'auto = []{}' would do the same
void func() {}
template
void func2() {}
template
void f()
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
version:
g++ (Compiler-Explorer-Build) 11.0.0 20200906 (experimental)
error:
In instantiation of 'constexpr int in_tem
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
godbolt link: https://godbolt.org/z/GC3eVG
The following, valid c++20 code, fails
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93595
--- Comment #1 from bastien penavayre ---
Note that this error only occurs with functions/methods
template
struct ok
{
template
using type = int;
template
struct otype {};
};
int main()
{
ok<0>::type<> t; //ok
ok<0>::otype<>
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
Created attachment 38335
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38335&action=edit
file compiled with -v -save-temps
When compiled the giv
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70778
--- Comment #1 from bastien penavayre ---
Created attachment 38336
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38336&action=edit
full output of -v -save-temps
: gcc
Version: 7.0.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
Created attachment 42054
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81999
--- Comment #1 from bastien penavayre ---
Created attachment 42055
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42055&action=edit
compile log with -v
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81999
--- Comment #2 from bastien penavayre ---
the same exact code compiles fine in a non-template context and parse error in
one
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
Created attachment 42073
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42073&action=edit
source c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82022
--- Comment #1 from bastien penavayre ---
Created attachment 42074
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42074&action=edit
log error
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
Created attachment 41170
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41170&action=edit
sour
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80387
bastien penavayre changed:
What|Removed |Added
CC||bastien.penavayre at epitech
dot e
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80387
--- Comment #2 from bastien penavayre ---
Created attachment 41172
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=41172&action=edit
source precompiled after g++ --save-temps
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
Created attachment 42426
--> https://gcc.gnu.org/bugzi
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643
--- Comment #1 from bastien penavayre ---
Comment on attachment 42426
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42426
source code
int main()
{
struct A
{
constexpr int operator()() const { return 42; }
};
auto
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643
--- Comment #2 from bastien penavayre ---
wrong file attached, see second comment.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82643
--- Comment #3 from bastien penavayre ---
Created attachment 42427
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42427&action=edit
source code
ptions.html#Warning-Options]
Product: gcc
Version: 5.3.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71743
--- Comment #1 from bastien penavayre ---
Created attachment 38824
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38824&action=edit
gcc-5 -v test.c -c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71743
--- Comment #2 from bastien penavayre ---
Created attachment 38825
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38825&action=edit
gcc-6 -v test.c -c
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71743
--- Comment #3 from bastien penavayre ---
Created attachment 38826
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=38826&action=edit
source file as example
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bastien.penavayre at epitech dot eu
Target Milestone: ---
The following causes an ICE:
template struct X {};
template class H = X, class = H<>>
struct A
{
};
static_assert
26 matches
Mail list logo