Ignore:
Timestamp:
03/07/23 10:58:57 (16 months ago)
Author:
jderouillat
Message:

Fixes for new MAC environment. AND On clients that do not initialize MPI themselves, do not monitor XIOS initialization with timers (requires that MPI_init has already been done)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/attribute_map.cpp

    r2388 r2471  
    402402           { 
    403403             oss << ", " << it->second->getName() << "_"; 
    404              if (oss.tellp() - startPos > 90) 
     404             if ((long)oss.tellp() - startPos > 90) 
    405405             { 
    406406               oss << "  &" << iendl; 
     
    452452           { 
    453453             oss << ", " << it->second->getName() << "_"; 
    454              if (oss.tellp() - startPos > 90) 
     454             if ((long)oss.tellp() - startPos > 90) 
    455455             { 
    456456               oss << "  &" << iendl; 
     
    502502           { 
    503503             oss << ", " << it->second->getName() << "_"; 
    504              if (oss.tellp() - startPos > 90) 
     504             if ((long)oss.tellp() - startPos > 90) 
    505505             { 
    506506               oss << "  &" << iendl; 
     
    552552           { 
    553553             oss << ", " << it->second->getName(); 
    554              if (oss.tellp() - startPos > 90) 
     554             if ((long)oss.tellp() - startPos > 90) 
    555555             { 
    556556               oss << "  &" << iendl; 
     
    587587           { 
    588588             oss << ", " << it->second->getName(); 
    589              if (oss.tellp() - startPos > 90) 
     589             if ((long)oss.tellp() - startPos > 90) 
    590590             { 
    591591               oss << "  &" << iendl; 
     
    614614           { 
    615615             oss << ", " << it->second->getName(); 
    616              if (oss.tellp() - startPos > 90) 
     616             if ((long)oss.tellp() - startPos > 90) 
    617617             { 
    618618               oss << "  &" << iendl; 
     
    649649           { 
    650650             oss << ", " << it->second->getName(); 
    651              if (oss.tellp() - startPos > 90) 
     651             if ((long)oss.tellp() - startPos > 90) 
    652652             { 
    653653               oss << "  &" << iendl; 
     
    676676           { 
    677677             oss << ", " << it->second->getName(); 
    678              if (oss.tellp() - startPos > 90) 
     678             if ((long)oss.tellp() - startPos > 90) 
    679679             { 
    680680               oss << "  &" << iendl; 
     
    711711           { 
    712712             oss << ", " << it->second->getName(); 
    713              if (oss.tellp() - startPos > 90) 
     713             if ((long)oss.tellp() - startPos > 90) 
    714714             { 
    715715               oss << "  &" << iendl; 
     
    738738           { 
    739739             oss << ", " << it->second->getName(); 
    740              if (oss.tellp() - startPos > 90) 
     740             if ((long)oss.tellp() - startPos > 90) 
    741741             { 
    742742               oss << "  &" << iendl; 
     
    776776           { 
    777777             oss << ", " << it->second->getName(); 
    778              if (oss.tellp() - startPos > 90) 
     778             if ((long)oss.tellp() - startPos > 90) 
    779779             { 
    780780               oss << "  &" << iendl; 
     
    803803           { 
    804804             oss << ", " << it->second->getName(); 
    805              if (oss.tellp() - startPos > 90) 
     805             if ((long)oss.tellp() - startPos > 90) 
    806806             { 
    807807               oss << "  &" << iendl; 
     
    841841           { 
    842842             oss << ", " << it->second->getName(); 
    843              if (oss.tellp() - startPos > 90) 
     843             if ((long)oss.tellp() - startPos > 90) 
    844844             { 
    845845               oss << "  &" << iendl; 
     
    868868           { 
    869869             oss << ", " << it->second->getName(); 
    870              if (oss.tellp() - startPos > 90) 
     870             if ((long)oss.tellp() - startPos > 90) 
    871871             { 
    872872               oss << "  &" << iendl; 
     
    906906           { 
    907907             oss << ", " << it->second->getName(); 
    908              if (oss.tellp() - startPos > 90) 
     908             if ((long)oss.tellp() - startPos > 90) 
    909909             { 
    910910               oss << "  &" << iendl; 
Note: See TracChangeset for help on using the changeset viewer.