Commit 90668383 authored by Davis King's avatar Davis King

Another minor refinement

parent bbfec3b2
...@@ -465,8 +465,8 @@ namespace dlib ...@@ -465,8 +465,8 @@ namespace dlib
std::ostream& out std::ostream& out
) )
{ {
serialize(item.exponent, out);
serialize(item.mantissa, out); serialize(item.mantissa, out);
serialize(item.exponent, out);
} }
inline void deserialize( inline void deserialize(
...@@ -474,8 +474,8 @@ namespace dlib ...@@ -474,8 +474,8 @@ namespace dlib
std::istream& in std::istream& in
) )
{ {
deserialize(item.exponent, in);
deserialize(item.mantissa, in); deserialize(item.mantissa, in);
deserialize(item.exponent, 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