Skip to content

Commit

Permalink
Revert "Fix cppcoreguidelines-virtual-class-destructor violation"
Browse files Browse the repository at this point in the history
This reverts commit 288531d.
  • Loading branch information
dabrain34 committed Sep 17, 2024
1 parent 8034cb6 commit 4b5c49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/include/VkVideoCore/VkVideoRefCountBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class VkVideoRefCountBase {
virtual int32_t GetRefCount() { assert(!"Must Implement"); return INVALID_REF_COUNT_VALUE; }

protected:
~VkVideoRefCountBase() = default;
virtual ~VkVideoRefCountBase() { }
};

template<class VkBaseObjType>
Expand Down

0 comments on commit 4b5c49d

Please sign in to comment.