From 31026fcb1dec4a311273e25f4575080ddcb9c78b Mon Sep 17 00:00:00 2001 From: Suyash Mahar Date: Tue, 27 Feb 2024 20:30:59 -0800 Subject: [PATCH] Remove Integral and Averageable from stats.hh --- include/nvsl/stats.hh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/nvsl/stats.hh b/include/nvsl/stats.hh index 77a96eb..2d7326c 100644 --- a/include/nvsl/stats.hh +++ b/include/nvsl/stats.hh @@ -36,12 +36,6 @@ namespace nvsl { constexpr bool periodic_stat_dump = false; #endif - template - concept Integral = std::is_integral::value; - - template - concept Averageable = Integral && requires(T a, T b, I c) { (a + b) / c; }; - /** @brief Class to track all the stats in a process */ class StatsBase; class StatsCollection {