Ignore:
Timestamp:
10/11/12 11:26:37 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: cosmetics, removing all deboule blank lines and indent single white lines correctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Exp/exp.h

    r13357 r13623  
    6060template <class doubletype>
    6161int DomainOutlineRead(int* pnprof,int** pprofnvertices,doubletype*** ppprofx,doubletype*** ppprofy,bool** pclosed,char* domainname){
    62        
     62
    6363        /*indexing: */
    6464        int i,counter;
     
    100100                nprof++;
    101101        }
    102        
     102
    103103        /*Allocate and initialize all the profiles: */
    104104        profnvertices = xNew<int>(nprof);
     
    121121                fscanf(fid,"%256s %256s\n",chardummy,chardummy);
    122122                fscanf(fid,"%256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy);
    123                
     123
    124124                /*Get number of profile vertices: */
    125125                fscanf(fid,"%20u %256s\n",&n,chardummy);
    126        
     126
    127127                /*Skip next line: */
    128128                fscanf(fid,"%256s %256s %256s %256s %256s\n",chardummy,chardummy,chardummy,chardummy,chardummy);
     
    131131                x=xNew<doubletype>(n);
    132132                y=xNew<doubletype>(n);
    133                
     133
    134134                /*Read vertices: */
    135135                for (i=0;i<n;i++){
Note: See TracChangeset for help on using the changeset viewer.