We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f2d6d commit fe08e1dCopy full SHA for fe08e1d
cppjson/src/object.cpp
@@ -1,7 +1,8 @@
1
#include "cppjson/object.hpp"
2
#include <new>
3
#include <stdexcept>
4
-#include <cstdlib>
+#include <cstring>
5
+#include <utility>
6
7
constexpr std::size_t DataStorageSize = std::max({sizeof(std::string), sizeof(cppjson::Object), sizeof(double), sizeof(bool)});
8
0 commit comments