mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 17:43:57 +00:00
Apply clang-tidy fixes for modernize-use-override in SparseTensorUtils.cpp (NFC)
This commit is contained in:
parent
63d69a21b7
commit
f38765a813
@ -896,9 +896,9 @@ public:
|
||||
uint64_t rank, const uint64_t *perm)
|
||||
: Base(tensor, rank, perm) {}
|
||||
|
||||
~SparseTensorEnumerator() final override = default;
|
||||
~SparseTensorEnumerator() final = default;
|
||||
|
||||
void forallElements(ElementConsumer<V> yield) final override {
|
||||
void forallElements(ElementConsumer<V> yield) final {
|
||||
forallElements(yield, 0, 0);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user