Commit eb81f6ff by Jason Merrill

re PR c++/5118 (c4x-g++ Fails on Templates)

        PR c++/5118
        * class.c (get_vfield_name): Use the constructor_name.

From-SVN: r51830
parent 71fad614
// PR c++/5118
template <int Count>
class d
{
public:
d()
{
myInt = Count;
}
int myInt;
virtual ~d() {}
};
volatile d<5> instD;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment