blob: eca35ba22b03e981447fa91a957e1fa3ea9cdd35 (
plain) (
blame)
1
2
3
4
5
6
|
#include "client_status.h"
template <>
void Out<NTvmAuth::TClientStatus>(IOutputStream& out, const NTvmAuth::TClientStatus& s) {
out << s.GetCode() << ": " << s.GetLastError();
}
|