: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
The compiler ICEs with a segmentation fault with the following code:
#include
#include
template class ttp, class c>
struct resolve {static constexpr bool value = false; };
template class
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
The following code:
template
constexpr T min( const T& a, const T& b)
{
return a < b ? a : b;
}
template
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
The following code compiles with g++ 8.1+, but fails with all the other
compilers which claim that we are
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83860
--- Comment #2 from Bruno Manganelli ---
Just to clarify, it still segfaults when using clang++ with libstdc++.
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
The following code results in a segmentation fault:
int main()
{
std::valarray va(16), vb(16), vc(16);
auto sum
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
Pack expansions are not handled correctly in the context of abbreviated
function templates. For example, foo in
template struct S
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66266
--- Comment #1 from Bruno Manganelli ---
Probably another symptom of
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64969
as inverting the arguments for auto_sum does not cause the assertion to fail.
Apologies for the duplicate.
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
Although abbreviated function templates are not part of ISO c++14 (but part of
the Concepts ts), the following code does not behave as its
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66210
Bruno Manganelli changed:
What|Removed |Added
Severity|minor |normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: bruno.manga95 at gmail dot com
Target Milestone: ---
Created attachment 35571
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35571&action=edit
testcase
In code such
10 matches
Mail list logo