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
01fa1f22
Commit
01fa1f22
authored
Nov 13, 2013
by
Davis King
Browse files
Fixed a compile time bug that could occur when wide character strings were
serialized.
parent
64f36ea1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
dlib/serialize.h
dlib/serialize.h
+20
-0
No files found.
dlib/serialize.h
View file @
01fa1f22
...
...
@@ -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
>
...
...
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