From 6ef0880ad059b604f44d145b2f28df9df0890bc2 Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Wed, 17 Aug 2016 14:06:13 +0100 Subject: [PATCH] Fix DDL compile error The code generated by bison wouldn't compile due to the compiler finding namespace ambiguity. --- dbcon/ddlpackage/ddl.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/ddlpackage/ddl.y b/dbcon/ddlpackage/ddl.y index 585dc20c1..957c1f20f 100644 --- a/dbcon/ddlpackage/ddl.y +++ b/dbcon/ddlpackage/ddl.y @@ -69,7 +69,7 @@ char* copy_string(const char *str); %expect 15 %pure-parser %lex-param {void * scanner} -%parse-param {struct pass_to_bison * x} +%parse-param {struct ddlpackage::pass_to_bison * x} %debug /* Bison uses this to generate a C union definition. This is used to