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
ffb44342
"git@developer.sourcefind.cn:OpenDAS/vision.git" did not exist on "3f1d9f6b21464aa023327dd0d2b397648470c387"
Commit
ffb44342
authored
Jun 07, 2016
by
Davis King
Browse files
Fixed missing return statement
parent
c772e4ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
dlib/smart_pointers/shared_ptr_thread_safe.h
dlib/smart_pointers/shared_ptr_thread_safe.h
+1
-4
No files found.
dlib/smart_pointers/shared_ptr_thread_safe.h
View file @
ffb44342
...
@@ -407,10 +407,7 @@ namespace dlib
...
@@ -407,10 +407,7 @@ namespace dlib
if
(
shared_node
->
del
)
if
(
shared_node
->
del
)
return
static_cast
<
D
*>
(
shared_node
->
del
->
get_deleter_void
(
typeid
(
D
)));
return
static_cast
<
D
*>
(
shared_node
->
del
->
get_deleter_void
(
typeid
(
D
)));
}
}
else
return
0
;
{
return
0
;
}
}
}
template
<
typename
Y
>
template
<
typename
Y
>
...
...
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