Changeset 23285


Ignore:
Timestamp:
09/14/18 20:19:12 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: enable compilation with proj.4

Location:
issm/trunk-jpl/src/c/modules
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/CoordinateSystemTransformx/CoordinateSystemTransformx.cpp

    r22498 r23285  
    99#include <proj_api.h>
    1010
    11 void CoordinateSystemTransformx(IssmDouble** px_dest,IssmDouble** py_dest,IssmDouble* x_src,IssmDouble* y_src,int size,const char* str_src,const char* str_dst){
     11void CoordinateSystemTransformx(double** px_dest,double** py_dest,double* x_src,double* y_src,int size,const char* str_src,const char* str_dst){
    1212
    1313#if !defined(_HAVE_PROJ4_)
     
    1717        /*Allocate output and initialize values as src*/
    1818        _assert_(size>0);
    19         IssmDouble* x_dest = xNew<IssmDouble>(size);
    20         IssmDouble* y_dest = xNew<IssmDouble>(size);
     19        double* x_dest = xNew<double>(size);
     20        double* y_dest = xNew<double>(size);
    2121        for(int i=0;i<size;i++){
    2222                x_dest[i] = x_src[i];
  • issm/trunk-jpl/src/c/modules/CoordinateSystemTransformx/CoordinateSystemTransformx.h

    r18801 r23285  
    88
    99/* local prototypes: */
    10 void CoordinateSystemTransformx(IssmDouble** px_dest,IssmDouble** py_dest,IssmDouble* x_src,IssmDouble* y_src,int size,const char* str_src,const char* str_dst);
     10void CoordinateSystemTransformx(double** px_dest,double** py_dest,double* x_src,double* y_src,int size,const char* str_src,const char* str_dst);
    1111#endif 
  • issm/trunk-jpl/src/c/modules/ModelProcessorx/CreateNodes.cpp

    r23167 r23285  
    3232                                for(j=0;j<3;j++){
    3333                                        if(my_nodes[3*i+j]){
    34                                                 nodes->AddObject(new Node(id0+3*i+j+1,id0+3*i+j,lid++,iomodel->elements[+3*i+j]-1,iomodel,analysis,approximation));
     34                                                nodes->AddObject(new Node(id0+3*i+j+1,id0+3*i+j,lid++,iomodel->elements[3*i+j]-1,iomodel,analysis,approximation));
    3535
    3636                                        }
Note: See TracChangeset for help on using the changeset viewer.