We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a8bda1 commit 4d2c3b5Copy full SHA for 4d2c3b5
3 files changed
include/types/ti_kv.h
@@ -11,6 +11,7 @@
11
#include <cstddef>
12
#include <memory>
13
#include <string>
14
+#include <variant>
15
16
#include <daw/daw_ordered_map.h>
17
#include <daw/json/daw_json_value_t.h>
src/json_to_cpp.cpp
@@ -12,6 +12,7 @@
#include <daw/daw_bounded_hash_set.h>
#include <daw/daw_string_view.h>
+#include <daw/daw_visit.h>
#include <daw/json/daw_json_parser.h>
18
#include <algorithm>
src/ti_kv.cpp
@@ -11,6 +11,8 @@
#include "types/ti_base.h"
#include "types/ti_object.h"
+
namespace daw::json_to_cpp::types {
ti_kv::ti_kv( std::string obj_name )
: value( std::make_unique<child_t>( ) )
0 commit comments