Ignore:
Timestamp:
04/25/24 15:05:23 (5 months ago)
Author:
jderouillat
Message:

Delete boost dependencies, the few features used are replaced by functions stored in extern/boost_extraction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/uuid.cpp

    r1174 r2629  
    1 #include <boost/uuid/uuid.hpp> 
    2 #include <boost/uuid/uuid_generators.hpp> 
    3 #include <boost/uuid/uuid_io.hpp> 
     1#include <string> 
     2#include <boost_uuid.hpp> 
    43 
    54namespace xios 
     
    87  std::string getUuidStr(void) 
    98  { 
    10     boost::uuids::random_generator gen; 
    11     boost::uuids::uuid u = gen(); 
    12     return boost::uuids::to_string(u) ; 
     9    boost_uuid uuid = gen_boost_uuid(); 
     10    return to_string(uuid) ; 
    1311  } 
    1412   
Note: See TracChangeset for help on using the changeset viewer.