Skip to content

Commit da65e33

Browse files
committed
refactor: fix modernize-type-traits lint errors
1 parent 0ca18c1 commit da65e33

5 files changed

+8
-9
lines changed

.clang-tidy

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Checks: >-
3131
-modernize-use-nodiscard,
3232
-modernize-use-trailing-return-type,
3333
-modernize-avoid-c-arrays,
34-
-modernize-type-traits,
3534
-modernize-use-ranges,
3635
performance*,
3736
-performance-enum-size,

src/complete-merkle-tree.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class complete_merkle_tree {
6666
template <typename L>
6767
complete_merkle_tree(int log2_root_size, int log2_leaf_size, int log2_word_size, L &&leaves) :
6868
complete_merkle_tree{log2_root_size, log2_leaf_size, log2_word_size} {
69-
static_assert(std::is_same<level_type, typename remove_cvref<L>::type>::value, "not a leaves vector");
69+
static_assert(std::is_same_v<level_type, typename remove_cvref<L>::type>, "not a leaves vector");
7070
get_level(get_log2_leaf_size()) = std::forward<L>(leaves);
7171
bubble_up();
7272
}

src/i-state-access.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ class i_state_access { // CRTP
638638
/// \param pval Pointer to word receiving value.
639639
template <typename T>
640640
void read_memory_word(uint64_t paddr, const unsigned char *hpage, uint64_t hoffset, T *pval) {
641-
static_assert(std::is_integral<T>::value && sizeof(T) <= sizeof(uint64_t), "unsupported type");
641+
static_assert(std::is_integral_v<T> && sizeof(T) <= sizeof(uint64_t), "unsupported type");
642642
return derived().template do_read_memory_word<T>(paddr, hpage, hoffset, pval);
643643
}
644644

@@ -650,7 +650,7 @@ class i_state_access { // CRTP
650650
/// \param val Value to be written.
651651
template <typename T>
652652
void write_memory_word(uint64_t paddr, unsigned char *hpage, uint64_t hoffset, T val) {
653-
static_assert(std::is_integral<T>::value && sizeof(T) <= sizeof(uint64_t), "unsupported type");
653+
static_assert(std::is_integral_v<T> && sizeof(T) <= sizeof(uint64_t), "unsupported type");
654654
return derived().template do_write_memory_word<T>(paddr, hpage, hoffset, val);
655655
}
656656

@@ -677,7 +677,7 @@ class i_state_access { // CRTP
677677
/// \returns True if successful (TLB hit), false otherwise.
678678
template <TLB_entry_type ETYPE, typename T>
679679
bool read_memory_word_via_tlb(uint64_t vaddr, T *pval) {
680-
static_assert(std::is_integral<T>::value && sizeof(T) <= sizeof(uint64_t), "unsupported type");
680+
static_assert(std::is_integral_v<T> && sizeof(T) <= sizeof(uint64_t), "unsupported type");
681681
return derived().template do_read_memory_word_via_tlb<ETYPE, T>(vaddr, pval);
682682
}
683683

@@ -689,7 +689,7 @@ class i_state_access { // CRTP
689689
/// \returns True if successful (TLB hit), false otherwise.
690690
template <TLB_entry_type ETYPE, typename T>
691691
bool write_memory_word_via_tlb(uint64_t vaddr, T val) {
692-
static_assert(std::is_integral<T>::value && sizeof(T) <= sizeof(uint64_t), "unsupported type");
692+
static_assert(std::is_integral_v<T> && sizeof(T) <= sizeof(uint64_t), "unsupported type");
693693
return derived().template do_write_memory_word_via_tlb<ETYPE, T>(vaddr, val);
694694
}
695695

src/interpret.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ static void dump_insn([[maybe_unused]] STATE_ACCESS &a, [[maybe_unused]] uint64_
977977
// If we are running in the microinterpreter, we may or may not be collecting a step access log.
978978
// To prevent additional address translation end up in the log,
979979
// the following check will always be false when MICROARCHITECTURE is defined.
980-
if (std::is_same<STATE_ACCESS, state_access>::value &&
980+
if (std::is_same_v<STATE_ACCESS, state_access> &&
981981
!translate_virtual_address<STATE_ACCESS, false>(a, &ppc, pc, PTE_XWR_X_SHIFT)) {
982982
ppc = pc;
983983
fprintf(stderr, "v %08" PRIx64, ppc);

src/merkle-tree-proof.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class merkle_tree_proof final {
192192
template <typename HASHER_TYPE>
193193
hash_type bubble_up(HASHER_TYPE &h, const hash_type &new_target_hash) const {
194194
static_assert(is_an_i_hasher<HASHER_TYPE>::value, "not an i_hasher");
195-
static_assert(std::is_same<typename remove_cvref<HASHER_TYPE>::type::hash_type, hash_type>::value,
195+
static_assert(std::is_same_v<typename remove_cvref<HASHER_TYPE>::type::hash_type, hash_type>,
196196
"incompatible hash types");
197197
hash_type hash = new_target_hash;
198198
for (int log2_size = get_log2_target_size(); log2_size < get_log2_root_size(); ++log2_size) {
@@ -210,7 +210,7 @@ class merkle_tree_proof final {
210210
merkle_tree_proof<hash_type, address_type> slice(HASHER_TYPE &h, int new_log2_root_size,
211211
int new_log2_target_size) const {
212212
static_assert(is_an_i_hasher<HASHER_TYPE>::value, "not an i_hasher");
213-
static_assert(std::is_same<typename remove_cvref<HASHER_TYPE>::type::hash_type, hash_type>::value,
213+
static_assert(std::is_same_v<typename remove_cvref<HASHER_TYPE>::type::hash_type, hash_type>,
214214
"incompatible hash types");
215215
if (new_log2_root_size <= 0) {
216216
throw std::out_of_range{"log2_root_size is not positive"};

0 commit comments

Comments
 (0)