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
gaoqiong
MIGraphX
Commits
6567fb7f
Commit
6567fb7f
authored
Aug 10, 2023
by
Paul
Browse files
Fix missing return
parent
dc33cc95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
src/msgpack.cpp
src/msgpack.cpp
+3
-6
No files found.
src/msgpack.cpp
View file @
6567fb7f
...
...
@@ -157,15 +157,12 @@ MSGPACK_API_VERSION_NAMESPACE(MSGPACK_DEFAULT_API_NS)
break
;
}
case
msgpack
::
type
::
MAP
:
case
msgpack
::
type
::
BIN
:
{
case
msgpack
::
type
::
BIN
:
MIGRAPHX_THROW
(
"Unexpected msgpack type"
);
break
;
}
case
msgpack
::
type
::
EXT
:
{
case
msgpack
::
type
::
EXT
:
MIGRAPHX_THROW
(
"msgpack EXT type not supported."
);
}
return
o
;
}
return
o
;
}
};
...
...
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