Kaydet (Commit) 846a91fa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:externvar

Change-Id: I7f09837e76a8368fd60aed1bb3a16fd0434e11ec
Reviewed-on: https://gerrit.libreoffice.org/68466
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst e85e3866
......@@ -53,13 +53,13 @@ class AstMember;
#include <parser.hxx>
/* handle locations */
int yycolumn = 1;
static int yycolumn = 1;
#define YY_USER_ACTION idlc()->setOffset(yycolumn, yycolumn+yyleng-1); \
yycolumn += yyleng;
sal_Int32 beginLine = 0;
OString docu;
static sal_Int32 beginLine = 0;
static OString docu;
static int asciiToInteger(char const * s, sal_Int64 * sval, sal_uInt64 * uval) {
bool neg = false;
......
......@@ -48,10 +48,10 @@
#define YY_NO_UNISTD_H
int yycolumn = 1;
static int yycolumn = 1;
#define YY_USER_ACTION yycolumn += yyleng;
int bText=0;
static int bText=0;
%}
%option yylineno
......
......@@ -50,7 +50,7 @@
/* forwards */
void YYWarning();
int bText=0;
static int bText=0;
%}
%option yylineno
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment