diff options
author | Pierre Ossman <ossman@cendio.se> | 2022-11-17 15:04:20 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2023-02-04 14:03:13 +0100 |
commit | 07e541678ca8c55c39780f7960c559a3e9c7ee1e (patch) | |
tree | 89f0f53831a9e546e35fdc0cd77451548ffe6874 /common/rdr/HexInStream.h | |
parent | d98720b736eb908d63c1ecb3779fc2a3cd9f4914 (diff) | |
download | tigervnc-07e541678ca8c55c39780f7960c559a3e9c7ee1e.tar.gz tigervnc-07e541678ca8c55c39780f7960c559a3e9c7ee1e.zip |
Move hex conversion helpers to util
These are used here and there so let's make them more general rather
than hiding them in the stream classes.
Diffstat (limited to 'common/rdr/HexInStream.h')
-rw-r--r-- | common/rdr/HexInStream.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/rdr/HexInStream.h b/common/rdr/HexInStream.h index 4ce6f7fd..76f91c08 100644 --- a/common/rdr/HexInStream.h +++ b/common/rdr/HexInStream.h @@ -29,9 +29,6 @@ namespace rdr { HexInStream(InStream& is); virtual ~HexInStream(); - static bool readHexAndShift(char c, int* v); - static bool hexStrToBin(const char* s, char** data, size_t* length); - private: virtual bool fillBuffer(); |