Hi Sergery,

2012/4/26 Sergey Polischuk <pol...@yandex.ru>:
> Problem is: declaration of set(...) methods in derived Matrix*Template 
> classes hides base class MatrixTemplate::set(...) pack of methods
> This can be solved by adding line:
>    using MatrixTemplate<[template params]>::set;
>
> in each derived class declaration.
>
> May be someone have better solution?

I have just got your code segment to compile with the addition to
Matrix2Template of:

   using base_class::set;

This is a little cleaner that you suggestion and copyable to the other
Matrix*Template classes.

Robert.
_______________________________________________
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to