blob: 5177969f4d16b280d1bbb89b9dab6db9e17f51e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <library/cpp/malloc/api/malloc.h>
#include <util/stream/output.h>
using namespace NMalloc;
template <>
void Out<TMallocInfo>(IOutputStream& out, const TMallocInfo& info) {
out << "malloc (name = " << info.Name << ")";
}
|