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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <fishandfrolick@gmail.com>2012-06-27 00:31:38 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2012-06-27 00:31:38 +0400
commit3c7b7ac9f59539c66884191231cf7e880f23be72 (patch)
treee3d2eb42141bbb56a0fba715bfb3ff002ce3190b /mert/Vocabulary.h
parenta4f69bb18722e8c2fbfac0c246bb6e874945b4de (diff)
rollback
Diffstat (limited to 'mert/Vocabulary.h')
-rw-r--r--mert/Vocabulary.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/mert/Vocabulary.h b/mert/Vocabulary.h
index 52c088f18..0d9291260 100644
--- a/mert/Vocabulary.h
+++ b/mert/Vocabulary.h
@@ -4,10 +4,6 @@
#include <map>
#include <string>
-#ifdef WITH_THREADS
-#include <boost/thread/shared_mutex.hpp>
-#endif
-
namespace mert {
/**
@@ -51,11 +47,6 @@ class Vocabulary {
private:
std::map<std::string, int> m_vocab;
-#ifdef WITH_THREADS
- //reader-writer lock
- mutable boost::shared_mutex m_accessLock;
-#endif
-
};
class VocabularyFactory {