/** ** \file type/array.cc ** \brief Implementation for type/array.hh. */ #include #include namespace type { // FIXME DONE: Some code was deleted here. Array::Array(const Type* const element_type) : element_type_(element_type) {} void Array::accept(ConstVisitor& v) const { v(*this); } void Array::accept(Visitor& v) { v(*this); } } // namespace type