Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::scoped...::deallocate(3) C++ Standard Libarystd::scoped...::deallocate(3)

NAME
       std::scoped_allocator_adaptor::deallocate - std::scoped_allocator_adap-
       tor::deallocate

Synopsis
	  Defined in header <scoped_allocator>
	  void deallocate( pointer p, size_type	n ) noexcept;  (since C++11)

	  Uses	the outer allocator to deallocate the storage referenced by p,
       by calling
	  std::allocator_traits<OuterAlloc>::deallocate(outer_allocator(),  p,
       n)

Parameters
	  p - pointer to the previously	allocated memory
	  n - the number of objects for	which the memory was allocated

Return value
	  (none)

See also
	  deallocate deallocates storage
		     (public member function of	std::allocator<T>)
	  deallocate deallocates storage using the allocator
	  [static]     (public	 static	  member   function   of  std::alloca-
       tor_traits<Alloc>)

http://cppreference.com		  2022.07.31	 std::scoped...::deallocate(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::scoped_allocator_adaptor::deallocate&sektion=3&manpath=FreeBSD+Ports+15.0>

home | help