Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mmamayka committed Oct 23, 2023
1 parent 73ee30f commit bde8613
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/besm-666/util/assotiative-cache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,24 +220,24 @@ void Cache<PayloadType, TagType, HashType, TagFunc,
template <typename PayloadType, typename TagType, typename HashType,
TagFunction<PayloadType, TagType> TagFunc,
HashFunction<TagType, HashType> HashFunc>
size_t
Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getSize() const noexcept {
size_t Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getSize()
const noexcept {
return size_;
}

template <typename PayloadType, typename TagType, typename HashType,
TagFunction<PayloadType, TagType> TagFunc,
HashFunction<TagType, HashType> HashFunc>
size_t
Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getWays() const noexcept {
size_t Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getWays()
const noexcept {
return ways_;
}

template <typename PayloadType, typename TagType, typename HashType,
TagFunction<PayloadType, TagType> TagFunc,
HashFunction<TagType, HashType> HashFunc>
size_t
Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getSets() const noexcept {
size_t Cache<PayloadType, TagType, HashType, TagFunc, HashFunc>::getSets()
const noexcept {
return sets_;
}

Expand Down

0 comments on commit bde8613

Please sign in to comment.