Change Attr::SetAttrExpr() to non-template

This commit is contained in:
Jon Siwek 2020-05-26 12:21:23 -07:00
parent 97636e97a5
commit 007533295a
2 changed files with 4 additions and 2 deletions

View file

@ -37,6 +37,9 @@ Attr::Attr(attr_tag t)
Attr::~Attr() = default;
void Attr::SetAttrExpr(IntrusivePtr<Expr> e)
{ expr = std::move(e); }
void Attr::Describe(ODesc* d) const
{
AddTag(d);