summaryrefslogtreecommitdiff
path: root/klm/alone/just_vocab.cc
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-10-22 14:04:27 +0100
committerKenneth Heafield <github@kheafield.com>2012-10-22 14:04:27 +0100
commit0ff82d648446645df245decc1e9eafad304eb327 (patch)
tree0806d429e4f12b672fd6d0461ba8165679bf424d /klm/alone/just_vocab.cc
parent5f98fe5c4f2a2090eeb9d30c030305a70a8347d1 (diff)
Update search, make it compile
Diffstat (limited to 'klm/alone/just_vocab.cc')
-rw-r--r--klm/alone/just_vocab.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/klm/alone/just_vocab.cc b/klm/alone/just_vocab.cc
deleted file mode 100644
index 35aea5ed..00000000
--- a/klm/alone/just_vocab.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "alone/read.hh"
-#include "util/file_piece.hh"
-
-#include <iostream>
-
-int main() {
- util::FilePiece f(0, "stdin", &std::cerr);
- while (true) {
- try {
- alone::JustVocab(f, std::cout);
- } catch (const util::EndOfFileException &e) { break; }
- std::cout << '\n';
- }
-}