adding extra to_string
This commit is contained in:
parent
4ed7659b2b
commit
b83a49298e
2 changed files with 6 additions and 2 deletions
|
|
@ -66,9 +66,9 @@ ELSE(WIN32)
|
||||||
ENDIF(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 )
|
option( UNITY_BUILD OFF )
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,10 @@ namespace fc {
|
||||||
{
|
{
|
||||||
return boost::lexical_cast<std::string>(d);
|
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 trim( const std::string& s )
|
||||||
{
|
{
|
||||||
std::string cpy(s);
|
std::string cpy(s);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue