From 2e4d6784d9ee83f3dea6e91867b676097d4cb9a2 Mon Sep 17 00:00:00 2001 From: Cristian Cobzarenco Date: Tue, 23 Sep 2014 17:05:44 +0200 Subject: [PATCH] Fixed "Private type in exported signature" issue. --- src/codegen/branchify.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/branchify.rs b/src/codegen/branchify.rs index 1ac9e960..0aa002e9 100644 --- a/src/codegen/branchify.rs +++ b/src/codegen/branchify.rs @@ -5,7 +5,7 @@ use std::io::{File, Writer}; use std::str::Chars; use std::vec::Vec; -struct ParseBranch { +pub struct ParseBranch { matches: Vec, result: Option, children: Vec,