This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
What does this error-message mean?
- To: gcc at gcc dot gnu dot org
- Subject: What does this error-message mean?
- From: Arne Sorli <sirlee at frisurf dot no>
- Date: Fri, 10 Nov 2000 16:55:19 +0100
What does this error-message mean?
../../source/Geo_Point2DField.TC:39: sorry, not implemented:
`method_call_expr' not supported by dump_expr
---code----
template <class C, class V>
Geo::Point2DField<C,V>::
Point2DField(
const Geo::Point2D<C>& location,
const V value )
: _location(location), // This is line 39, error
_value(value)
{
;
}
-----------
The compiler has seen the definition of Point2D's copy-constructor when it reaches this point, so I can't understand why it says 'not implemented'. I'm using gcc2.95.2 on Linux. Any ideas where/how to start debugging?
Thanx,
Arne Sorli