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

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2013-12-25 00:56:41 +0400
committerKenneth Heafield <github@kheafield.com>2013-12-25 00:56:41 +0400
commite5b87969691645e5ab6ba78c1a9dc422c84c1d25 (patch)
treed1e273052c5d7463b9b92c131c355dcb4f7696b8
parent15cffb84b8c8b074d3449091386325c7a57c412c (diff)
Remove some debugging
-rw-r--r--lm/builder/lmplz_main.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/lm/builder/lmplz_main.cc b/lm/builder/lmplz_main.cc
index a466291..2563dee 100644
--- a/lm/builder/lmplz_main.cc
+++ b/lm/builder/lmplz_main.cc
@@ -28,7 +28,6 @@ boost::program_options::typed_value<std::string> *SizeOption(std::size_t &to, co
} // namespace
int main(int argc, char *argv[]) {
- bool help = false;
try {
namespace po = boost::program_options;
po::options_description options("Language model building options");
@@ -124,7 +123,6 @@ int main(int argc, char *argv[]) {
}
util::PrintUsage(std::cerr);
} catch (const std::exception &e) {
- std::cerr << "help is " << help << std::endl;
std::cerr << e.what() << std::endl;
return 1;
}