From 0edd694bac3ebed529a8dc8762b339513a2d0dbb Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 31 Mar 2005 08:23:11 +0000 Subject: [PATCH] fix a default action type clash in some versions of bison --- tools/qfcc/source/qc-parse.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index b8bb51c80..efa0d27c8 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -238,8 +238,8 @@ def ; opt_eq - : /* empty */ - | '=' + : /* empty */ { } + | '=' { } ; opt_semi