summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/type/array.hxx
blob: 1ed65da371fe66b11f1fb76037824dbb1109635d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 ** \file type/array.hxx
 ** \brief Inline methods for type::Array.
 */
#pragma once

#include <misc/contract.hh>
#include <type/array.hh>

namespace type
{
  // FIXME DONE: Some code was deleted here.
  inline const Type* Array::get_element_type() const
  {
    return element_type_;
  }

} // namespace type