Unverified Commit 93c70d16 by hlu1 Committed by GitHub

[TVM] ref_counter -> ref_counter_ (#5184)

parent e4a5441d
...@@ -795,7 +795,7 @@ inline void Object::IncRef() { ...@@ -795,7 +795,7 @@ inline void Object::IncRef() {
} }
inline void Object::DecRef() { inline void Object::DecRef() {
if (--ref_counter == 0) { if (--ref_counter_ == 0) {
if (this->deleter_ != nullptr) { if (this->deleter_ != nullptr) {
(*this->deleter_)(this); (*this->deleter_)(this);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment