From 48c4d73cbc55fb5f09999be107a440b82c841334 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Thu, 3 Jun 2021 18:27:46 -0700 Subject: [PATCH] "<" to "<=" --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 3932b2a..a0780fe 100644 --- a/main.cpp +++ b/main.cpp @@ -22,7 +22,7 @@ void SaveSig(int s) int main(int argc, char **argv) { - static_assert(pre_log_size < max_log_size, "`max_log_size` must be larger than `pre_log_size`."); + static_assert(pre_log_size <= max_log_size, "`max_log_size` must be larger than `pre_log_size`."); static_assert(!(max_log_size % pre_log_size), "`max_log_size` must be a multiple of `pre_log_size`."); if (argc != 4)