Ignore:
Timestamp:
05/24/13 19:12:27 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: simplifying prints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/wrappers/matlab/io/FetchMatlabData.cpp

    r15100 r15105  
    3838                else{
    3939                        if(!mxIsClass(dataref,"double") && !mxIsClass(dataref,"single")){
    40                                 _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'" << "\n");
     40                                _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'\n");
    4141                        }
    4242                        /*Convert matlab matrix to double* matrix: */
     
    8585                else{
    8686                        if(!mxIsClass(dataref,"double") && !mxIsClass(dataref,"single")){
    87                                 _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'" << "\n");
     87                                _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'\n");
    8888                        }
    8989                        /*Convert matlab n-dim array to double* matrix: */
     
    132132                else{
    133133                        if(!mxIsClass(dataref,"double") && !mxIsClass(dataref,"single")){
    134                                 _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'" << "\n");
     134                                _printf_("Warning: converting matlab data from '" << mxGetClassName(dataref) << "' to 'double'\n");
    135135                        }
    136136                        /*Convert matlab matrix to double* matrix: */
Note: See TracChangeset for help on using the changeset viewer.