| 74 | // �����״̬����ȷ�ԡ��������ȷ����������쳣�� |
| 75 | template <typename TStream> |
| 76 | void ValidateStream(const TStream& stream) |
| 77 | { |
| 78 | if (!stream) { |
| 79 | std::stringstream ss; |
| 80 | ss << "��״̬����" << StreamStatusToString(stream); |
| 81 | throw Exception(ss.str()); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | // ���ڽ����� map::equal_range �Ⱥ����ķ���ֵת��Ϊ�ɱ� foreach ����ܵĽṹ�� |
| 86 | template <typename TIterator> |
nothing calls this directly
no test coverage detected