Ignore:
Timestamp:
01/17/20 18:20:22 (4 years ago)
Author:
ymipsl
Message:

Compiler fix : solve the problem of crash occured with recent version of GCC, only in optimised mode > O1
It seems to be due to non return value from a non void function in case of early initialization (static initialization).
Thanks to A. Durocher who find the tip.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/branchs/xios-2.5/src/node/reorder_domain.cpp

    r1457 r1850  
    2727  bool CReorderDomain::registerTrans() 
    2828  { 
    29     registerTransformation(TRANS_REORDER_DOMAIN, CReorderDomain::create); 
     29    return registerTransformation(TRANS_REORDER_DOMAIN, CReorderDomain::create); 
    3030  } 
    3131 
Note: See TracChangeset for help on using the changeset viewer.