Extend flexible_value variant with vector of itself.
This commit is contained in:
parent
5b5d53e49b
commit
c5be670806
|
|
@ -28,6 +28,7 @@ class flexible_value final
|
||||||
std::vector<int64_t>,
|
std::vector<int64_t>,
|
||||||
std::vector<uint64_t>,
|
std::vector<uint64_t>,
|
||||||
std::vector<std::string>,
|
std::vector<std::string>,
|
||||||
|
std::vector<flexible_value>,
|
||||||
keyvalue_type>;
|
keyvalue_type>;
|
||||||
|
|
||||||
flexible_value();
|
flexible_value();
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@
|
||||||
// the Free Software Foundation.
|
// the Free Software Foundation.
|
||||||
//
|
//
|
||||||
#include "bmrshared/to_tuple.hpp"
|
#include "bmrshared/to_tuple.hpp"
|
||||||
|
#include <algorithm>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue