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/group_template_impl.hpp

    r1158 r1542  
    326326 
    327327//   template <class U, class V, class W> 
    328 //   boost::shared_ptr<V> CGroupTemplate<U, V, W>::get(const string& id)  
     328//   std::shared_ptr<V> CGroupTemplate<U, V, W>::get(const string& id)  
    329329//   { 
    330330//       return CObjectFactory::GetObject<V>(id) ; 
     
    332332 
    333333//   template <class U, class V, class W> 
    334 //   boost::shared_ptr<V> CGroupTemplate<U, V, W>::get()  
     334//   std::shared_ptr<V> CGroupTemplate<U, V, W>::get()  
    335335//   { 
    336336//       return CObjectFactory::GetObject<V>(this) ; 
     
    338338    
    339339//   template <class U, class V, class W> 
    340 //   boost::shared_ptr<V> CGroupTemplate<U, V, W>::create(const string& id)  
     340//   std::shared_ptr<V> CGroupTemplate<U, V, W>::create(const string& id)  
    341341//   { 
    342342//       return CObjectFactory::CreateObject<V>(id) ; 
Note: See TracChangeset for help on using the changeset viewer.