Ignore:
Timestamp:
01/20/20 15:47:32 (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/trunk/src/node/generate_rectilinear_domain.cpp

    r838 r1852  
    2727  bool CGenerateRectilinearDomain::registerTrans() 
    2828  { 
    29     registerTransformation(TRANS_GENERATE_RECTILINEAR_DOMAIN, create); 
     29    return registerTransformation(TRANS_GENERATE_RECTILINEAR_DOMAIN, create); 
    3030  } 
    3131 
Note: See TracChangeset for help on using the changeset viewer.