MCPcopy Create free account
hub / github.com/fmtlib/fmt / operator==

Method operator==

include/fmt/format.h:739–741  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

737 void deallocate(T* p, size_t) { free(p); }
738
739 constexpr friend auto operator==(allocator, allocator) noexcept -> bool {
740 return true; // All instances of this allocator are equivalent.
741 }
742 constexpr friend auto operator!=(allocator, allocator) noexcept -> bool {
743 return false;
744 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected