2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-21 15:22:14 +00:00

Progresses removing stream class. Improvements in the pubsub example.

This commit is contained in:
Marcelo Zimbres
2021-11-07 12:25:56 +01:00
parent 49965d215a
commit 5f03aa6626
14 changed files with 167 additions and 157 deletions

View File

@@ -8,7 +8,7 @@
#pragma once
#include <aedis/resp3/type.hpp>
#include <aedis/resp3/response_adapter_base.hpp>
#include <aedis/resp3/response_base.hpp>
#include "adapter_utils.hpp"
@@ -20,7 +20,7 @@ template <class T>
using basic_flat_array = std::vector<T>;
template <class T>
struct basic_flat_array_adapter : response_adapter_base {
struct basic_flat_array_adapter : response_base {
int i = 0;
basic_flat_array<T>* result = nullptr;