This commit is contained in:
Jonathan Campbell
2019-03-18 19:32:29 -07:00
parent f97d45b599
commit ec8721542b

View File

@@ -13,6 +13,8 @@
template <typename srcT,typename dstT> class _Iconv {
public:
/* NTS: The C++ standard defines std::string as std::basic_string<char>.
* These typedefs will match if srcT = char and dstT = char */
typedef std::basic_string<srcT> src_string;
typedef std::basic_string<dstT> dst_string;
public: