From: Arnaud Giersch Date: Wed, 23 Feb 2011 13:32:35 +0000 (+0100) Subject: Assign value at declaration. X-Git-Tag: v0.1~116 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/487f2d9b9eab8937cd512d3a9ee9e057e9edfebd?ds=sidebyside Assign value at declaration. --- diff --git a/communicator.cpp b/communicator.cpp index 7abdf76..bd0cb7b 100644 --- a/communicator.cpp +++ b/communicator.cpp @@ -63,9 +63,9 @@ msg_comm_t communicator::real_send(const char* dest, message* msg) void communicator::real_flush(sent_comm_type& sent_comm, bool wait) { - sent_comm_type::iterator bound; - bound = std::remove_if(sent_comm.begin(), sent_comm.end(), - comm_test_n_destroy); + sent_comm_type::iterator bound = + std::remove_if(sent_comm.begin(), sent_comm.end(), + comm_test_n_destroy); sent_comm.erase(bound, sent_comm.end()); if (wait && !sent_comm.empty()) { size_t size = sent_comm.size();