Hello there

copy constructors for matrix2 now not work (and by this i mean code will not 
compile), i believe other matrices that are done with MatrixTemplate have same 
behavior

repro code:

#include <osg/Uniform>

int main(int argc, char** argv)
{
 osg::Matrix2 m(0,0,0,0);
 osg::Matrix2 m1(m); //<- compilation fails on this line
 return 0;
}

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

Reply via email to