remove boost and json

This commit is contained in:
Andrey Zimin
2024-05-15 18:52:32 +03:00
parent b14e81244d
commit 478e417dc1
77 changed files with 49210 additions and 163 deletions

View File

@@ -0,0 +1,16 @@
#include <array>
#include "hack/logger/logger.hpp"
#include "hack/memory/make_ptr.hpp"
auto main(int argc, char *argv[]) -> int
{
auto a = hack::memory::make_unique<int>(5);
hack::log()(*a);
auto arr = hack::memory::make_unique<int[]>(5);
arr[0] = 1;
hack::log()(arr[0]);
}