🎨 fix indentation

This commit is contained in:
Niels Lohmann 2022-05-10 21:07:50 +02:00
parent 875e9a3768
commit 892247dd8e
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -8,7 +8,7 @@ int main()
auto alloc = json::get_allocator();
using traits_t = std::allocator_traits<decltype(alloc)>;
json *j = traits_t::allocate(alloc, 1);
json* j = traits_t::allocate(alloc, 1);
traits_t::construct(alloc, j, "Hello, world!");
std::cout << *j << std::endl;