Changeset 19169


Ignore:
Timestamp:
08/18/18 15:17:15 (6 years ago)
Author:
tbretz
Message:
Source code moved to source file.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

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

    r19163 r19169  
    392392    return rc;
    393393}
     394
     395#if (__GNUC__ == 4)
     396
     397namespace std
     398{
     399    string to_string(const size_t &val)
     400    {
     401        return to_string((long long unsigned int)val);
     402    }
     403
     404    string to_string(const int &val)
     405    {
     406        return to_string((long long int)val);
     407    }
     408}
     409#endif
  • trunk/FACT++/src/tools.h

    r19119 r19169  
    5555        return sum2 << 8 | sum1;
    5656    }
    57 
    5857}
    5958
     59// Fix for gcc 4.7.7 at ISDC
     60#if (__GNUC__ == 4)
     61
     62namespace std
     63{
     64    string to_string(const size_t &val);
     65    string to_string(const int &val);
     66}
    6067#endif
     68
     69#endif
Note: See TracChangeset for help on using the changeset viewer.