From 439aef8c33117875c2945ebe8e748722014d91b8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Fri, 20 Jul 2012 15:34:51 +0200 Subject: [PATCH] static operator_count --- lexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lexer.h b/lexer.h index 9256101..c23f944 100644 --- a/lexer.h +++ b/lexer.h @@ -184,7 +184,7 @@ static const oper_info operators[] = { { "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 }, { "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 }, }; -const size_t operator_count = (sizeof(operators) / sizeof(operators[0])); +static const size_t operator_count = (sizeof(operators) / sizeof(operators[0])); typedef struct { -- 2.39.2