aboutsummaryrefslogtreecommitdiff
path: root/encoding.h
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbarenblat@gmail.com>2020-10-11 14:36:58 -0400
committerGravatar Benjamin Barenblat <bbarenblat@gmail.com>2020-10-11 14:36:58 -0400
commit3eb7b1a0f958cc4483802889aa9fdbd171e0f807 (patch)
treef8e16323e027615bdb0a7ff94becc19dc58f16a3 /encoding.h
parentd06e7a04c43dad29d8bd79ec6f98af07add0181f (diff)
Rewrite encoding routines using AbseilHEADmaster
Abseil makes encoding and decoding a lot easier. Take an Abseil dependency, and rewrite the encoding and decoding routines using it. Closes: https://github.com/bbarenblat/scoville/issues/2
Diffstat (limited to 'encoding.h')
-rw-r--r--encoding.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/encoding.h b/encoding.h
index d6e72ea..dfea6a2 100644
--- a/encoding.h
+++ b/encoding.h
@@ -20,11 +20,6 @@
namespace scoville {
-class EncodingFailure : public std::logic_error {
- public:
- using std::logic_error::logic_error;
-};
-
class DecodingFailure : public std::logic_error {
public:
using std::logic_error::logic_error;