[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-04 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 Jason Merrill changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-04 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 --- Comment #3 from Jason Merrill --- Author: jason Date: Thu Aug 4 16:06:09 2016 New Revision: 239136 URL: https://gcc.gnu.org/viewcvs?rev=239136&root=gcc&view=rev Log: PR c++/72796 - wrong resolution of scoped method call. *

[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-03 Thread jason at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 Jason Merrill changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 Martin Liška changed: What|Removed |Added Target Milestone|--- |7.0

[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-03 Thread marxin at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/72796] [7 Regression] Firefox build error: use of deleted function

2016-08-03 Thread trippels at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796 --- Comment #1 from Markus Trippelsdorf --- markus@x4 js % cat jsarray.ii struct a; template struct b { typedef a c; }; struct d { void e(int); }; struct a : d { void e(int) = delete; }; template struct g : b::c { g(int) { this->d::e(0);