Ignore:
Timestamp:
01/22/21 12:00:29 (3 years ago)
Author:
yushan
Message:

Graph intermedia commit to a tmp branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_trunk_graph/src/xios_spl.hpp

    r1612 r2019  
    88#include <unordered_map> 
    99#include <memory> 
    10  
    1110// standard C 
    1211#include <cstring> 
    1312#include <cstdlib> 
     13 
    1414#include <cmath> 
     15// bug in cmath header => macro collision marco with DOMAIN 
     16#ifdef DOMAIN 
     17#undef DOMAIN 
     18#endif 
     19 
    1520#include <ctime> 
    1621 
     
    2429#include <queue> 
    2530#include <valarray> 
     31#include <tuple> 
     32 
    2633// Flux. 
    2734#include <iostream> 
     
    3239#include <boost/cast.hpp> 
    3340#include <boost/current_function.hpp> 
     41 
    3442/// Map /// 
    3543#define xios_map std::map 
     
    4957typedef std::size_t        StdSize; 
    5058 
    51 typedef  unsigned short int   ushort; 
    52 typedef  unsigned int         uint; 
    53 typedef  unsigned long int    ulong; 
     59typedef  unsigned short int      ushort; 
     60typedef  unsigned int            uint; 
     61typedef  unsigned long int       ulong; 
     62typedef  long long int           longlong; 
     63typedef  unsigned long long int  ulonglong; 
    5464 
    5565const size_t stringArrayLen=255 ; 
     
    5969#include "log.hpp" 
    6070using namespace std; 
    61 using namespace boost ; 
    62  
     71//using namespace boost ; 
    6372 
    6473#endif //__XIOS_SPL__ 
Note: See TracChangeset for help on using the changeset viewer.