1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

remove unused

This commit is contained in:
schaeff 2019-07-11 00:04:42 +02:00
parent 574f1f1c7d
commit f6bae357fd

View file

@ -23,11 +23,6 @@ impl<'ast> Variable<'ast> {
Self::array(id, Type::FieldElement, size)
}
#[cfg(test)]
pub fn boolean_array(id: Identifier<'ast>, size: usize) -> Variable<'ast> {
Self::array(id, Type::Boolean, size)
}
pub fn array(id: Identifier<'ast>, ty: Type, size: usize) -> Variable<'ast> {
Self::with_id_and_type(id, Type::array(ty, size))
}