Changeset 12487


Ignore:
Timestamp:
06/21/12 06:35:43 (13 years ago)
Author:
utke
Message:

first use of macro replacing printf to see if it impacts the regression
test check

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/Contour.cpp

    r12365 r12487  
    5252        int i;
    5353
    54         printf("Contour: %i:\n",id);
    55         printf("   nods: %i\n",nods);
    56         printf("   closed: %s\n",closed?"true":"false");
     54        _printLine_("Contour: " << id);
     55        _printLine_("   nods: " << nods);
     56        _printLine_("   closed: " << (closed?"true":"false"));
    5757        if(nods){
    58                 printf("   x,y:\n");
     58                _printLine_("   x,y:");
    5959                for(i=0;i<nods;i++){
    60                         printf("%i: %g|%g\n",i,x[i],y[i]);
     60                        _printLine_(i << ": " << x[i] << "|" << y[i]);
    6161                }
    6262        }
Note: See TracChangeset for help on using the changeset viewer.