diff --git a/src/checkpoint/container/queue_serialize.h b/src/checkpoint/container/queue_serialize.h index ddca1da2..0ac6573e 100644 --- a/src/checkpoint/container/queue_serialize.h +++ b/src/checkpoint/container/queue_serialize.h @@ -76,10 +76,7 @@ template < typename SerializerT, typename T, typename = std::enable_if_t< - not std::is_same< - SerializerT, - checkpoint::Footprinter - >::value + not std::is_same_v > > void serializeQueueLikeContainer(SerializerT& s, std::queue& q) { @@ -111,10 +108,7 @@ template < typename SerializerT, typename Q, typename = std::enable_if_t< - std::is_same< - SerializerT, - checkpoint::Footprinter - >::value + std::is_same_v > > void serializeQueueLikeContainer(SerializerT& s, const Q& q) {