summaryrefslogtreecommitdiff
path: root/idlc/source/scanner.l
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/scanner.l')
-rw-r--r--idlc/source/scanner.l6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l
index 40f3670f78f5..cf018ec21567 100644
--- a/idlc/source/scanner.l
+++ b/idlc/source/scanner.l
@@ -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;