adding extra to_string

This commit is contained in:
Daniel Larimer 2014-03-11 11:29:29 -04:00
parent 4ed7659b2b
commit b83a49298e
2 changed files with 6 additions and 2 deletions

View file

@ -66,9 +66,9 @@ ELSE(WIN32)
ENDIF(WIN32)
FIND_PACKAGE( OpenSSL )
find_package( OpenSSL )
SET (CMAKE_FIND_LIBRARY_SUFFIXES ${ORIGINAL_LIB_SUFFIXES})
set( CMAKE_FIND_LIBRARY_SUFFIXES ${ORIGINAL_LIB_SUFFIXES} )
option( UNITY_BUILD OFF )

View file

@ -98,6 +98,10 @@ namespace fc {
{
return boost::lexical_cast<std::string>(d);
}
fc::string to_string( uint16_t d)
{
return boost::lexical_cast<std::string>(d);
}
std::string trim( const std::string& s )
{
std::string cpy(s);