@@ -638,7 +638,7 @@ class i_state_access { // CRTP
638
638
// / \param pval Pointer to word receiving value.
639
639
template <typename T>
640
640
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" );
642
642
return derived ().template do_read_memory_word <T>(paddr, hpage, hoffset, pval);
643
643
}
644
644
@@ -650,7 +650,7 @@ class i_state_access { // CRTP
650
650
// / \param val Value to be written.
651
651
template <typename T>
652
652
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" );
654
654
return derived ().template do_write_memory_word <T>(paddr, hpage, hoffset, val);
655
655
}
656
656
@@ -677,7 +677,7 @@ class i_state_access { // CRTP
677
677
// / \returns True if successful (TLB hit), false otherwise.
678
678
template <TLB_entry_type ETYPE, typename T>
679
679
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" );
681
681
return derived ().template do_read_memory_word_via_tlb <ETYPE, T>(vaddr, pval);
682
682
}
683
683
@@ -689,7 +689,7 @@ class i_state_access { // CRTP
689
689
// / \returns True if successful (TLB hit), false otherwise.
690
690
template <TLB_entry_type ETYPE, typename T>
691
691
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" );
693
693
return derived ().template do_write_memory_word_via_tlb <ETYPE, T>(vaddr, val);
694
694
}
695
695
0 commit comments