From 51ae33aed234c1837d3ed6d7abc4d18c269b7f30 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 3 May 2021 20:38:13 -0400 Subject: [PATCH] [ox/oc] Replace Vector with Buffer --- deps/ox/src/ox/oc/read.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/ox/src/ox/oc/read.hpp b/deps/ox/src/ox/oc/read.hpp index 925f62248..8662c3fe4 100644 --- a/deps/ox/src/ox/oc/read.hpp +++ b/deps/ox/src/ox/oc/read.hpp @@ -12,12 +12,12 @@ #include #include +#include #include #include #include #include #include -#include namespace ox { @@ -205,7 +205,7 @@ Result readOC(const char *json) { } template -Result readOC(const Vector &buff) { +Result readOC(const Buffer &buff) { return readOC(buff.data(), buff.size()); }