https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249
Andrew Pinski changed:
What|Removed |Added
Target Milestone|--- |8.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |FIXED
Depends on|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249
--- Comment #3 from Jonathan Wakely ---
Slightly further reduced:
template
auto attempt(FnT f)
{
return [f]()
{
try
{
f();
}
catch(...)
{
__builtin_puts("caught");
}
};
}
// More complex behavior doe
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249
--- Comment #2 from Jonathan Wakely ---
Reduced:
template
auto attempt(FnT f)
{
return [f]()
{
try
{
f();
}
catch(...)
{
__builtin_puts("caught");
}
};
}
// More complex behavior does not seem to mat
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79249
Jonathan Wakely changed:
What|Removed |Added
Keywords||wrong-code
Status|UNCONFIR