Add is_atomic_type() overloads for IntrusivePtr

This commit is contained in:
Jon Siwek 2020-05-21 22:53:10 -07:00
parent 6a1c312451
commit 457c08f531
4 changed files with 10 additions and 6 deletions

View file

@ -3305,7 +3305,7 @@ bool same_val(const Val* /* v1 */, const Val* /* v2 */)
bool is_atomic_val(const Val* v)
{
return is_atomic_type(v->GetType().get());
return is_atomic_type(v->GetType());
}
bool same_atomic_val(const Val* v1, const Val* v2)