1
0
Fork 0
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:
King_DuckZ 2016-06-13 17:27:52 +01:00
parent 316f8f585b
commit 93e328d77f

View file

@ -19,8 +19,8 @@
#define id93FA96E3071745D9A1E45D4D29B9F7D0
#include <boost/variant/variant.hpp>
#include <boost/variant/recursive_wrapper.hpp>
#include <string>
#include <vector>
namespace redis {
class Reply;
@ -29,7 +29,7 @@ namespace redis {
using RedisVariantType = boost::variant<
long long,
std::string,
boost::recursive_wrapper<std::vector<Reply>>
std::vector<Reply>
>;
enum RedisVariantTypes {
RedisVariantType_Integer = 0,