prevent 'foo_const_bar&' to be replaced by 'foo__bar'

in function return type.
This commit is contained in:
Sébastien Loriot 2011-06-24 08:54:19 +00:00
parent 8393b7f9ab
commit dab64b7fc5
1 changed files with 6 additions and 1 deletions

View File

@ -541,7 +541,12 @@ void remove_const_ref_pair( char* s) {
case 4:
if ( *s == 't') {
++s;
state = 5;
if (*s && *s == ' '){
++s;
state = 5;
}
else
state=0;
} else
state = 0;
break;