aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/malloc/api/helpers/io.cpp
blob: 3f97121298fd76a49021d58e8b125c88f9feb22b (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 << ")"; 
}