Home
last modified time | relevance | path

Searched refs:traits_t (Results 1 – 1 of 1) sorted by relevance

/third_party/json/docs/examples/
Dget_allocator.cpp9 using traits_t = std::allocator_traits<decltype(alloc)>; in main() typedef
11 json* j = traits_t::allocate(alloc, 1); in main()
12 traits_t::construct(alloc, j, "Hello, world!"); in main()
16 traits_t::destroy(alloc, j); in main()
17 traits_t::deallocate(alloc, j, 1); in main()