mirror of
https://github.com/boostorg/core.git
synced 2025-07-29 20:37:22 +02:00
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 += '(';
|
||||
|
||||
if( suffix.front() == ' ' )
|
||||
if( suffix[ 0 ] == ' ' )
|
||||
{
|
||||
r += suffix.substr( 1 );
|
||||
}
|
||||
|
Reference in New Issue
Block a user