Extend flexible_value variant with vector of itself.

This commit is contained in:
Bart Beumer 2023-10-03 20:39:13 +02:00
parent 5b5d53e49b
commit c5be670806
2 changed files with 2 additions and 0 deletions

View File

@ -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();

View File

@ -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>