Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
90668383
"git@developer.sourcefind.cn:OpenDAS/dlib.git" did not exist on "8a2963d758342a6171dde3b5196eaefc784a08f8"
Commit
90668383
authored
Apr 06, 2013
by
Davis King
Browse files
Another minor refinement
parent
bbfec3b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/serialize.h
dlib/serialize.h
+2
-2
No files found.
dlib/serialize.h
View file @
90668383
...
@@ -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
);
}
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment