Ignore:
Timestamp:
08/18/18 17:22:57 (6 years ago)
Author:
tbretz
Message:
ISDC workaround for to_string(unsigned int)
File:
1 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
Note: See TracChangeset for help on using the changeset viewer.