summaryrefslogtreecommitdiff
path: root/ext/librethinkdbxx/src/utils.h
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-21 16:42:52 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-21 16:42:52 -0700
commite37eb0aa542ef8aee8532c5bfdde7f09ed343a28 (patch)
treec2900b4814847fb3249b41e7dcfe5ab6dbac9215 /ext/librethinkdbxx/src/utils.h
parent130fa35bb1707ea232015c1a3672f0585632dea1 (diff)
downloadinfinitytier-e37eb0aa542ef8aee8532c5bfdde7f09ed343a28.tar.gz
infinitytier-e37eb0aa542ef8aee8532c5bfdde7f09ed343a28.zip
More cleanup of old stuff no longer used.
Diffstat (limited to 'ext/librethinkdbxx/src/utils.h')
-rw-r--r--ext/librethinkdbxx/src/utils.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/librethinkdbxx/src/utils.h b/ext/librethinkdbxx/src/utils.h
deleted file mode 100644
index 04496e2c..00000000
--- a/ext/librethinkdbxx/src/utils.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include <cstddef>
-#include <string>
-
-namespace RethinkDB {
-
-// The size of the longest UTF-8 encoded unicode codepoint
-const size_t max_utf8_encoded_size = 6;
-
-// Decode a base64 string. Returns false on failure.
-bool base64_decode(const std::string& in, std::string& out);
-std::string base64_encode(const std::string&);
-
-// Encodes a single unicode codepoint into UTF-8. Returns the number of bytes written.
-// Does not add a trailing null byte
-size_t utf8_encode(unsigned int, char*);
-
-}