diff options
author | clyne <clyne@bitgloo.com> | 2020-12-30 13:44:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 13:44:56 -0500 |
commit | 7a63ba6dc707e190f84d73a92ebc308c5da555bd (patch) | |
tree | 1265a81c912e11e81794e8c9ea1366b3ac6dba92 /consteval_huffman.hpp | |
parent | 36e3f1a0fa620090c87edae8ebf0e7c97ae6099e (diff) |
adding missing returns for cbegin and cend
Diffstat (limited to 'consteval_huffman.hpp')
-rw-r--r-- | consteval_huffman.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/consteval_huffman.hpp b/consteval_huffman.hpp index 69b7822..b7ea57f 100644 --- a/consteval_huffman.hpp +++ b/consteval_huffman.hpp @@ -345,8 +345,8 @@ public: auto end() const noexcept { return decoder::end(compressed_data); } - auto cbegin() const noexcept { begin(); } - auto cend() const noexcept { end(); } + auto cbegin() const noexcept { return begin(); } + auto cend() const noexcept { return end(); } // For accessing the compressed data auto data() const noexcept { |