Changeset 465866c in nscp for include/strEx.h


Ignore:
Timestamp:
06/05/12 07:35:30 (13 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.1, 0.4.2
Children:
742b035
Parents:
695f240
Message:

2012-06-05 MickeM

  • Tweaked all servers to use the new internals and added first testcase for NSCP socket

2012-05-24 MickeM

  • Reworked real time event log support to be a lot more flexible You can now specify all options on a "filter" level.
  • WARNING* Old syntax NOT supported (and will not upgrade) but hopefully not to many will be affected.
  • Added support for ipv6 allowed hosts validation

2012-05-21 MickeM

  • Sofia Born (My second daughter)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/strEx.h

    rfa11893 r465866c  
    256256  }; 
    257257  namespace s { 
     258    /* 
    258259    inline std::string itos(float i) { 
    259260      std::stringstream ss; 
     
    271272      return ss.str(); 
    272273    } 
    273     inline std::string itos(unsigned int i) { 
     274    */ 
     275    template<typename T> 
     276    inline std::string itos(T i) { 
    274277      std::stringstream ss; 
    275278      ss << i; 
Note: See TracChangeset for help on using the changeset viewer.