IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 770


Ignore:
Timestamp:
May 24, 2004, 1:30:52 PM (22 years ago)
Author:
desonia
Message:

fixed a casting of a incompatible pointer problem (compiler warning) under AMD64.

Location:
trunk/psLib/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psMatrix.c

    r761 r770  
    2020 *  @author Ross Harman, MHPCC
    2121 *   
    22  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    23  *  @date $Date: 2004-05-24 21:09:39 $
     22 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     23 *  @date $Date: 2004-05-24 23:30:52 $
    2424 *
    2525 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    180180    perm.size = numCols;
    181181    outPerm->n = numCols;
    182     perm.data = outPerm->vec.ui32;
     182    perm.data = outPerm->vec.v;
    183183    lu.size1 = numRows;
    184184    lu.size2 = numCols;
     
    219219
    220220    perm.size = inPerm->n;
    221     perm.data = inPerm->vec.ui32;
     221    perm.data = inPerm->vec.v;
    222222
    223223    b.size = inVector->n;
  • trunk/psLib/src/math/psMatrix.c

    r761 r770  
    2020 *  @author Ross Harman, MHPCC
    2121 *   
    22  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    23  *  @date $Date: 2004-05-24 21:09:39 $
     22 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     23 *  @date $Date: 2004-05-24 23:30:52 $
    2424 *
    2525 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    180180    perm.size = numCols;
    181181    outPerm->n = numCols;
    182     perm.data = outPerm->vec.ui32;
     182    perm.data = outPerm->vec.v;
    183183    lu.size1 = numRows;
    184184    lu.size2 = numCols;
     
    219219
    220220    perm.size = inPerm->n;
    221     perm.data = inPerm->vec.ui32;
     221    perm.data = inPerm->vec.v;
    222222
    223223    b.size = inVector->n;
Note: See TracChangeset for help on using the changeset viewer.