Fixes for variable shadowing (20/28)
This commit is contained in:
parent
07a3262755
commit
ad79230158
1 changed files with 3 additions and 3 deletions
|
|
@ -641,10 +641,10 @@ void post_t::add_to_value(value_t& value, const optional<expr_t&>& expr) const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void post_t::set_reported_account(account_t * account)
|
void post_t::set_reported_account(account_t * acct)
|
||||||
{
|
{
|
||||||
xdata().account = account;
|
xdata().account = acct;
|
||||||
account->xdata().reported_posts.push_back(this);
|
acct->xdata().reported_posts.push_back(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
void to_xml(std::ostream& out, const post_t& post)
|
void to_xml(std::ostream& out, const post_t& post)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue