aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-08-05 18:42:53 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-08-05 18:42:53 +0100
commit51ebedb803192a2007a89322c25e7325e902b496 (patch)
tree1750ecc8fd144b2ae636df0f15a679c651d8774d /contrib/epee
parentMerge pull request #2159 (diff)
downloadmonero-51ebedb803192a2007a89322c25e7325e902b496.tar.xz
epee: remove a couple unused locals
Diffstat (limited to 'contrib/epee')
-rw-r--r--contrib/epee/include/storages/levin_abstract_invoke2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/include/storages/levin_abstract_invoke2.h b/contrib/epee/include/storages/levin_abstract_invoke2.h
index 14e7d402a..8ced9d689 100644
--- a/contrib/epee/include/storages/levin_abstract_invoke2.h
+++ b/contrib/epee/include/storages/levin_abstract_invoke2.h
@@ -115,7 +115,7 @@ namespace epee
{
typename serialization::portable_storage stg;
const_cast<t_arg&>(out_struct).store(stg);//TODO: add true const support to searilzation
- std::string buff_to_send, buff_to_recv;
+ std::string buff_to_send;
stg.store_to_binary(buff_to_send);
int res = transport.invoke_async(command, buff_to_send, conn_id, [cb, command](int code, const std::string& buff, typename t_transport::connection_context& context)->bool
{
@@ -151,7 +151,7 @@ namespace epee
serialization::portable_storage stg;
out_struct.store(stg);
- std::string buff_to_send, buff_to_recv;
+ std::string buff_to_send;
stg.store_to_binary(buff_to_send);
int res = transport.notify(command, buff_to_send, conn_id);