summaryrefslogtreecommitdiffstats
path: root/src/declinfo.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-06-01 14:01:16 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-06-01 14:01:16 (GMT)
commit3c3efc26e6b258ef2c3916f7e1b2c07254039ad4 (patch)
tree19bb93d1e138c2c00b144b36dbe92c3e9e387635 /src/declinfo.l
parent962b9c9a85384f358258725767d5ae5a2784a0e8 (diff)
downloadDoxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.zip
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.gz
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.bz2
Correction warning message
Consistency
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 d7f8743..414dd51 100644
--- a/src/declinfo.l
+++ b/src/declinfo.l
@@ -198,7 +198,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+=" ";
@@ -211,7 +211,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
@@ -256,7 +256,7 @@ void parseFuncDecl(const QCString &decl,bool objC,QCString &cl,QCString &t,
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;
@@ -274,7 +274,7 @@ void parseFuncDecl(const QCString &decl,bool objC,QCString &cl,QCString &t,
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('[');
@@ -327,7 +327,7 @@ void parseFuncDecl(const QCString &decl,bool objC,QCString &cl,QCString &t,
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);
@@ -351,8 +351,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()
);