1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-16 18:41:53 +03:00
This commit is contained in:
Niels
2015-10-17 12:51:59 +02:00
parent 73632377bf
commit 746c1a7142
4 changed files with 4 additions and 3 deletions

View File

@ -589,7 +589,7 @@ class basic_json
static T* create(Args&& ... args)
{
AllocatorType<T> alloc;
auto deleter = [&](T* object)
auto deleter = [&](T * object)
{
alloc.deallocate(object, 1);
};