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@nyclamp.(none)>2013-01-14 23:35:44 +0400
committerJohn Langford <jl@nyclamp.(none)>2013-01-14 23:35:44 +0400
commit72a5d6f2c1710eaaea03b0a5350715b47e8d233a (patch)
treefe209879b9a3b6b06f426f94c3c401051b97cf4a /vowpalwabbit/lda_core.h
parentb83aad90a7e2e2a91ad7f0a63877cc9f590aaaab (diff)
use namespaces
Diffstat (limited to 'vowpalwabbit/lda_core.h')
-rw-r--r--vowpalwabbit/lda_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vowpalwabbit/lda_core.h b/vowpalwabbit/lda_core.h
index 3b083143..e087da04 100644
--- a/vowpalwabbit/lda_core.h
+++ b/vowpalwabbit/lda_core.h
@@ -7,9 +7,9 @@ license as described in the file LICENSE.
#define LDA_CORE_H
namespace LDA{
-void drive_lda(void*);
-void save_load(void* in, io_buf& model_file, bool read, bool text);
-void lda_parse_flags(vw&, std::vector<std::string>&, po::variables_map&);
+ void drive(void*);
+ void save_load(void* in, io_buf& model_file, bool read, bool text);
+ void parse_flags(vw&, std::vector<std::string>&, po::variables_map&);
}
#endif