proxygen
folly::detail::concurrenthashmap::HazptrDeleter< Allocator > Class Template Reference

#include <ConcurrentHashMap-detail.h>

Public Member Functions

template<typename Node >
void operator() (Node *node)
 

Detailed Description

template<typename Allocator>
class folly::detail::concurrenthashmap::HazptrDeleter< Allocator >

Definition at line 30 of file ConcurrentHashMap-detail.h.

Member Function Documentation

template<typename Allocator >
template<typename Node >
void folly::detail::concurrenthashmap::HazptrDeleter< Allocator >::operator() ( Node node)
inline

Definition at line 33 of file ConcurrentHashMap-detail.h.

References uint8_t, and Node< Atom >::~Node().

33  {
34  node->~Node();
35  Allocator().deallocate((uint8_t*)node, sizeof(Node));
36  }

The documentation for this class was generated from the following file: