Skip to content

Commit 8c3bb3d

Browse files
committed
common: added needed imports to Json lib
1 parent 516273c commit 8c3bb3d

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

common/json/Json.hh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@
2424
#pragma once
2525

2626
#include <json/json.h>
27+
#include <type_traits>
28+
#include <atomic>
29+
#include <array>
30+
#include <vector>
31+
#include <set>
32+
#include <map>
33+
#include <unordered_map>
34+
#include <string>
35+
#include <sstream>
2736

2837
template <typename T>
2938
std::enable_if_t<std::is_integral_v<T>, Json::Value> inline ConvertToJson(

0 commit comments

Comments
 (0)