Fixed a compile time bug that could occur when wide character strings were

serialized.
This commit is contained in:
Davis King 2013-11-13 18:50:47 -05:00
parent 64f36ea160
commit 01fa1f223e
1 changed files with 20 additions and 0 deletions

View File

@ -652,6 +652,26 @@ namespace dlib
std::istream& in
);
inline void serialize (
const std::wstring& item,
std::ostream& out
);
inline void deserialize (
std::wstring& item,
std::istream& in
);
inline void serialize (
const ustring& item,
std::ostream& out
);
inline void deserialize (
ustring& item,
std::istream& in
);
template <
typename T
>