Sign in
◑
Theme
apache
/
rocketmq-client-cpp
/
c99d515f8eabceee293f69a8565595121c884214
/
.
/
src
/
main
/
cpp
/
base
/
ErrorCode.cpp
blob: b6e44dc2d2647fe07eaa2e530de94d7b295f31c5 [
file
]
#include
"rocketmq/ErrorCategory.h"
ROCKETMQ_NAMESPACE_BEGIN
std
::
error_code make_error_code
(
ErrorCode
code
)
{
const
ErrorCategory
&
instance
=
ErrorCategory
::
instance
();
return
{
static_cast
<int>
(
code
),
instance
};
}
ROCKETMQ_NAMESPACE_END