From e58cd3813232845ad301753590e3a21eafecf6ce Mon Sep 17 00:00:00 2001 From: clyne Date: Sat, 14 Nov 2020 21:00:09 -0500 Subject: [PATCH] fixed bytes_saved for reporting negative values --- consteval_huffman.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/consteval_huffman.hpp b/consteval_huffman.hpp index 82a39c0..6061764 100644 --- a/consteval_huffman.hpp +++ b/consteval_huffman.hpp @@ -17,10 +17,10 @@ * @tparam data The string of data to be compressed. * @tparam data_length The size in bytes of the data, defaults to using strlen(). */ -template::length(data)> +template::length(data)> class huffman_compress { - using size_t = unsigned long int; + using size_t = long int; // Jump to the bottom of this header for the public-facing features of this // class. @@ -274,7 +274,7 @@ public: consteval static auto uncompressed_size() { return data_length; } - consteval static auto bytes_saved() { + consteval static size_t bytes_saved() { return uncompressed_size() - compressed_size(); }