| 76 | // util's ToString default implementation. |
| 77 | template <class T> |
| 78 | TString ToStringIgnoringFormatValue(const T& t) |
| 79 | { |
| 80 | TString s; |
| 81 | ::TStringOutput o(s); |
| 82 | o << t; |
| 83 | return s; |
| 84 | } |
| 85 | |
| 86 | //////////////////////////////////////////////////////////////////////////////// |
| 87 |