void Tag::unref()

in src/sizes/sizes_tags.cpp [72:80]


void Tag::unref() {
    if (this == &EmptyTag || this == &HeldObjectTag || this == &TagWithNewInfo) {
        return;
    }

    if (--refCount == 0) {
        delete this;
    }
}