forked from boostorg/core
g++ 4.4 has no string::front
This commit is contained in:
@ -373,7 +373,7 @@ template<class R, class... A> std::string function_type_name( tn_identity<R(A...
|
|||||||
{
|
{
|
||||||
r += '(';
|
r += '(';
|
||||||
|
|
||||||
if( suffix.front() == ' ' )
|
if( suffix[ 0 ] == ' ' )
|
||||||
{
|
{
|
||||||
r += suffix.substr( 1 );
|
r += suffix.substr( 1 );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user