Ignore:
Timestamp:
05/23/23 12:11:20 (13 months ago)
Author:
jderouillat
Message:

Add a comparison operator to the filesToWrite_ std::set to force the file creation ordering + Backporting of 2462, 2494 and test suite environment for RedHat8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/dev/XIOS_ATTACHED/src/node/file.hpp

    r2482 r2504  
    228228   ///-------------------------------------------------------------- 
    229229 
     230   struct FilePtrCompare { 
     231     bool operator() (CFile const *l, CFile const *r) const { 
     232       return l->getFileOutputName() < r->getFileOutputName(); 
     233     } 
     234   }; 
    230235} // namespace xios 
    231236 
Note: See TracChangeset for help on using the changeset viewer.