We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
app::as_raw
Possible fix:
diff --git a/src/Client/RequestEncoder.hpp b/src/Client/RequestEncoder.hpp index 40fda22..2752d3b 100644 --- a/src/Client/RequestEncoder.hpp +++ b/src/Client/RequestEncoder.hpp @@ -318,7 +318,7 @@ RequestEncoder<BUFFER>::encodeCall(const std::string &func, const T &args) encodeHeader(Iproto::CALL); mpp::encode(m_Buf, mpp::as_map(std::forward_as_tuple( MPP_AS_CONST(Iproto::FUNCTION_NAME), func, - MPP_AS_CONST(Iproto::TUPLE), mpp::as_arr(args)))); + MPP_AS_CONST(Iproto::TUPLE), args))); uint32_t request_size = (m_Buf.end() - request_start) - PREHEADER_SIZE; ++request_start; request_start.set(__builtin_bswap32(request_size));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Possible fix:
The text was updated successfully, but these errors were encountered: