io.cpp 236 B

12345678910
  1. #include <library/cpp/malloc/api/malloc.h>
  2. #include <util/stream/output.h>
  3. using namespace NMalloc;
  4. template <>
  5. void Out<TMallocInfo>(IOutputStream& out, const TMallocInfo& info) {
  6. out << "malloc (name = " << info.Name << ")";
  7. }