Changeset 19172 for trunk


Ignore:
Timestamp:
08/18/18 17:22:57 (6 years ago)
Author:
tbretz
Message:
ISDC workaround for to_string(unsigned int)
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/tools.cc

    r19169 r19172  
    406406        return to_string((long long int)val);
    407407    }
     408
     409    string to_string(const unsigned int &val)
     410    {
     411        return to_string((long long int)val);
     412    }
    408413}
    409414#endif
  • trunk/FACT++/src/tools.h

    r19169 r19172  
    6464    string to_string(const size_t &val);
    6565    string to_string(const int &val);
     66    string to_string(const unsigned int &val);
    6667}
    6768#endif
Note: See TracChangeset for help on using the changeset viewer.