Commit 39c77074 authored by Davis King's avatar Davis King

Fixed a bug discovered by Mitchell Peabody. In some instances trying to

deserialize a std::vector would fail to compile.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403482
parent ef378198
......@@ -510,7 +510,7 @@ namespace dlib
template <typename T, typename alloc>
void deserialize (
std::vector<T>& item,
std::vector<T,alloc>& item,
std::istream& in
);
......
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