mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-11-29 01:33:46 +00:00
Remove unnecessary usage of recursive_wrapper.
This commit is contained in:
parent
316f8f585b
commit
93e328d77f
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@
|
||||||
#define id93FA96E3071745D9A1E45D4D29B9F7D0
|
#define id93FA96E3071745D9A1E45D4D29B9F7D0
|
||||||
|
|
||||||
#include <boost/variant/variant.hpp>
|
#include <boost/variant/variant.hpp>
|
||||||
#include <boost/variant/recursive_wrapper.hpp>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace redis {
|
namespace redis {
|
||||||
class Reply;
|
class Reply;
|
||||||
|
@ -29,7 +29,7 @@ namespace redis {
|
||||||
using RedisVariantType = boost::variant<
|
using RedisVariantType = boost::variant<
|
||||||
long long,
|
long long,
|
||||||
std::string,
|
std::string,
|
||||||
boost::recursive_wrapper<std::vector<Reply>>
|
std::vector<Reply>
|
||||||
>;
|
>;
|
||||||
enum RedisVariantTypes {
|
enum RedisVariantTypes {
|
||||||
RedisVariantType_Integer = 0,
|
RedisVariantType_Integer = 0,
|
||||||
|
|
Loading…
Reference in a new issue