| 199 | FType = std::move(VFT); |
| 200 | } |
| 201 | void setFunctionType(FunctionType &&FT) noexcept { |
| 202 | Type = TypeCode::Func; |
| 203 | FType = std::move(FT); |
| 204 | } |
| 205 | |
| 206 | /// Getter for content type. |
| 207 | TypeCode getContentTypeCode() const noexcept { return Type; } |
no outgoing calls