Changeset 8475

Show
Ignore:
Timestamp:
06/20/08 17:28:38 (2 years ago)
Author:
robert
Message:

Changed const double* to const Matrix::value_type* to ensure changes in Matrix type don't break the build

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • OpenSceneGraph/trunk/src/osgPlugins/Inventor/ConvertToInventor.cpp

    r8292 r8475  
    19441944  SoMatrixTransform *ivTransform = new SoMatrixTransform; 
    19451945  SbMatrix ivMatrix; 
    1946   const double *src = node.getMatrix().ptr(); 
     1946  const osg::Matrix::value_type *src = node.getMatrix().ptr(); 
    19471947  float *dest = ivMatrix[0]; 
    19481948  for (int i=0; i<16; i++,dest++,src++)