summaryrefslogtreecommitdiffstats
path: root/src/declinfo.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/declinfo.l')
-rw-r--r--src/declinfo.l14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/declinfo.l b/src/declinfo.l
index 83f7268..36ef94a 100644
--- a/src/declinfo.l
+++ b/src/declinfo.l
@@ -208,7 +208,7 @@ ID "$"?([a-z_A-Z\x80-\xFF][a-z_A-Z0-9\x80-\xFF]*)|(@[0-9]+)
static void addType(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
- //printf("addType() yyextra->type=`%s' yyextra->scope=`%s' yyextra->name=`%s'\n",
+ //printf("addType() yyextra->type='%s' yyextra->scope='%s' yyextra->name='%s'\n",
// yyextra->type.data(),yyextra->scope.data(),yyextra->name.data());
if (yyextra->name.isEmpty() && yyextra->scope.isEmpty()) return;
if (!yyextra->type.isEmpty()) yyextra->type+=" ";
@@ -221,7 +221,7 @@ static void addType(yyscan_t yyscanner)
static void addTypeName(yyscan_t yyscanner)
{
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
- //printf("addTypeName() yyextra->type=`%s' yyextra->scope=`%s' yyextra->name=`%s'\n",
+ //printf("addTypeName() yyextra->type='%s' yyextra->scope='%s' yyextra->name='%s'\n",
// yyextra->type.data(),yyextra->scope.data(),yyextra->name.data());
if (yyextra->name.isEmpty() ||
yyextra->name.at(yyextra->name.length()-1)==':') // end of Objective-C keyword => append to yyextra->name not yyextra->type
@@ -266,7 +266,7 @@ void parseFuncDecl(const QCString &decl,const SrcLangExt lang,QCString &cl,QCStr
printlex(yy_flex_debug, TRUE, __FILE__, NULL);
yyextra->inputString = decl;
- //printf("Input=`%s'\n",yyextra->inputString);
+ //printf("Input='%s'\n",yyextra->inputString);
yyextra->inputPosition = 0;
yyextra->classTempListFound = FALSE;
yyextra->funcTempListFound = FALSE;
@@ -285,7 +285,7 @@ void parseFuncDecl(const QCString &decl,const SrcLangExt lang,QCString &cl,QCStr
BEGIN( Start );
declinfoYYlex(g_yyscanner);
- //printf("yyextra->type=`%s' class=`%s' yyextra->name=`%s' yyextra->args=`%s'\n",
+ //printf("yyextra->type='%s' class='%s' yyextra->name='%s' yyextra->args='%s'\n",
// yyextra->type.data(),yyextra->scope.data(),yyextra->name.data(),yyextra->args.data());
int nb = yyextra->name.findRev('[');
@@ -338,7 +338,7 @@ void parseFuncDecl(const QCString &decl,const SrcLangExt lang,QCString &cl,QCStr
a.prepend(")");
t=t.left(t.length()-1);
}
- //printf("yyextra->type=`%s' class=`%s' yyextra->name=`%s' yyextra->args=`%s'\n",
+ //printf("yyextra->type='%s' class='%s' yyextra->name='%s' yyextra->args='%s'\n",
// t.data(),cl.data(),n.data(),a.data());
printlex(yy_flex_debug, FALSE, __FILE__, NULL);
@@ -362,8 +362,8 @@ void dumpDecl(const char *s)
QCString funcTNames;
msg("-----------------------------------------\n");
parseFuncDecl(s,yyextra->className,classTNames,yyextra->type,yyextra->name,yyextra->args,funcTNames);
- msg("yyextra->type=`%s' class=`%s' classTempl=`%s' yyextra->name=`%s' "
- "funcTemplateNames=`%s' yyextra->args=`%s'\n",
+ msg("yyextra->type='%s' class='%s' classTempl='%s' yyextra->name='%s' "
+ "funcTemplateNames='%s' yyextra->args='%s'\n",
yyextra->type.data(),yyextra->className.data(),classTNames.data(),
yyextra->name.data(),funcTNames.data(),yyextra->args.data()
);