blob: 8d87e90d0ad5d1b646a8e5f2b6c6f7a8ac6196a6 (
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 << ")";
}
|