Ignore:
Timestamp:
06/13/18 16:48:53 (6 years ago)
Author:
oabramkina
Message:

Replacing Boost's unordered_map and shared_pointer by its STL counterparts.

Two notes for Curie:

  • one can see the content of unordered_map with ddt only if XIOS has been compiled with gnu
  • XIOS will not compile any more with pgi (all available versions use old STL which are not up to the c++11 norms)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/io/nc4_data_output.cpp

    r1509 r1542  
    26972697      void CNc4DataOutput::writeTimeAxis_ 
    26982698                  (CField*    field, 
    2699                    const boost::shared_ptr<CCalendar> cal) 
     2699                   const std::shared_ptr<CCalendar> cal) 
    27002700      { 
    27012701         StdOStringStream oss; 
     
    29202920           msg.append(e.what()); 
    29212921           ERROR("CNc4DataOutput::writeTimeAxis_ (CField*    field, \ 
    2922                   const boost::shared_ptr<CCalendar> cal)", << msg); 
     2922                  const std::shared_ptr<CCalendar> cal)", << msg); 
    29232923         } 
    29242924      } 
Note: See TracChangeset for help on using the changeset viewer.