Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2012-12-15 20:13:59 +0400
committerJohn Langford <jl@hunch.net>2012-12-15 20:13:59 +0400
commit0b637b266061780d81b5e61fa46f5751398ad482 (patch)
tree2064fe124525fc6fe5cc106e6370b6bd35f856e7 /vowpalwabbit/sender.cc
parent0ca69e546361102e90272968847e05b622ba9a66 (diff)
changed push to push_back
Diffstat (limited to 'vowpalwabbit/sender.cc')
-rw-r--r--vowpalwabbit/sender.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/sender.cc b/vowpalwabbit/sender.cc
index 181a3598..3e540165 100644
--- a/vowpalwabbit/sender.cc
+++ b/vowpalwabbit/sender.cc
@@ -32,7 +32,7 @@ void open_sockets(string host)
{
sd = open_socket(host.c_str());
buf = new io_buf();
- push(buf->files,sd);
+ buf->files.push_back(sd);
}
void parse_send_args(po::variables_map& vm, vector<string> pairs)