Skip to content

Commit fe08e1d

Browse files
authored
Fix includes lol (utility, cstring)
1 parent 07f2d6d commit fe08e1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cppjson/src/object.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#include "cppjson/object.hpp"
22
#include <new>
33
#include <stdexcept>
4-
#include <cstdlib>
4+
#include <cstring>
5+
#include <utility>
56

67
constexpr std::size_t DataStorageSize = std::max({sizeof(std::string), sizeof(cppjson::Object), sizeof(double), sizeof(bool)});
78

0 commit comments

Comments
 (0)