summaryrefslogtreecommitdiff
path: root/ext/librethinkdbxx/src/json_p.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/json_p.h
parent130fa35bb1707ea232015c1a3672f0585632dea1 (diff)
downloadinfinitytier-e37eb0aa542ef8aee8532c5bfdde7f09ed343a28.tar.gz
infinitytier-e37eb0aa542ef8aee8532c5bfdde7f09ed343a28.zip
More cleanup of old stuff no longer used.
Diffstat (limited to 'ext/librethinkdbxx/src/json_p.h')
-rw-r--r--ext/librethinkdbxx/src/json_p.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/librethinkdbxx/src/json_p.h b/ext/librethinkdbxx/src/json_p.h
deleted file mode 100644
index ebf537a9..00000000
--- a/ext/librethinkdbxx/src/json_p.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#include "datum.h"
-
-namespace rapidjson {
- class CrtAllocator;
- template<typename> struct UTF8;
- template <typename, typename> class GenericValue;
- template <typename> class MemoryPoolAllocator;
- typedef GenericValue<UTF8<char>, MemoryPoolAllocator<CrtAllocator> > Value;
-}
-
-namespace RethinkDB {
-
-Datum read_datum(const std::string&);
-Datum read_datum(const rapidjson::Value &json);
-std::string write_datum(const Datum&);
-
-}