aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/builder.cpp
blob: e1f696c9315905dd777d6bb35803ca1dfbb0a8a4 (plain) (blame)
1
2
3
4
5
6
7
8
#include "builder.h"

#include <util/stream/output.h>

template <>
void Out<TStringBuilder>(IOutputStream& os, const TStringBuilder& sb) { 
    os << static_cast<const TString&>(sb);
}