Commit 01fa1f22 authored by Davis King's avatar Davis King

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

serialized.
parent 64f36ea1
...@@ -652,6 +652,26 @@ namespace dlib ...@@ -652,6 +652,26 @@ namespace dlib
std::istream& in 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 < template <
typename T typename T
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment