1 #ifndef STAN_LANG_AST_NODE_UB_IDX_DEF_HPP
2 #define STAN_LANG_AST_NODE_UB_IDX_DEF_HPP
3 
4 #include <stan/lang/ast.hpp>
5 
6 namespace stan {
7   namespace lang {
8 
ub_idx()9     ub_idx::ub_idx() { }
10 
ub_idx(const expression & ub)11     ub_idx::ub_idx(const expression& ub) : ub_(ub) { }
12 
13   }
14 }
15 #endif
16