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>2013-05-14 01:56:24 +0400
committerJohn Langford <jl@hunch.net>2013-05-14 01:56:24 +0400
commite3e80cf19987150327f0493ccdcc00427727c0c1 (patch)
tree6a757cb5ae62b837dea7dbf5a6119af3cd02b8ba /vowpalwabbit/vwdll.cpp
parent325bb77ec6cad4c7da17fbf710ef32dc1a89b71d (diff)
fixed interface to use public function
Diffstat (limited to 'vowpalwabbit/vwdll.cpp')
-rw-r--r--vowpalwabbit/vwdll.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vowpalwabbit/vwdll.cpp b/vowpalwabbit/vwdll.cpp
index 330979cf..a4f22ecf 100644
--- a/vowpalwabbit/vwdll.cpp
+++ b/vowpalwabbit/vwdll.cpp
@@ -46,7 +46,7 @@ extern "C"
adjust_used_index(*pointer);
pointer->do_reset_source = true;
VW::start_parser(*pointer,false);
- pointer->l.driver(pointer, pointer->l.data);
+ pointer->l.drive(pointer);
VW::end_parser(*pointer);
}
else
@@ -169,4 +169,4 @@ extern "C"
vw* pointer = static_cast<vw*>(handle);
return VW::num_weights(*pointer);
}
-} \ No newline at end of file
+}