Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 722


Ignore:
Timestamp:
Dec 29, 2007, 3:51:58 AM (16 years ago)
Author:
landauf
Message:

removed extra qualifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/misc/Convert.h

    r721 r722  
    5353    */
    5454    template <typename T>
    55     static bool Convert::ToString(std::string& output, T input)
     55    static bool ToString(std::string& output, T input)
    5656    {
    5757        std::ostringstream oss;
     
    7878    */
    7979    template <typename T>
    80     static bool Convert::ToString(std::string& output, T input, const std::string& fallbackString)
     80    static bool ToString(std::string& output, T input, const std::string& fallbackString)
    8181    {
    8282        if (Convert::ToString(output, input))
     
    9999    */
    100100    template <typename T>
    101     static bool Convert::FromString(T& output, const std::string& input)
     101    static bool FromString(T& output, const std::string& input)
    102102    {
    103103        std::istringstream iss(input);
     
    121121    */
    122122    template <typename T>
    123     static bool Convert::FromString(T& output, const std::string& input, T fallbackValue)
     123    static bool FromString(T& output, const std::string& input, T fallbackValue)
    124124    {
    125125        if (Convert::FromString(output, input))
Note: See TracChangeset for help on using the changeset viewer.