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
path: root/search
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-11-17 00:22:34 +0400
committerKenneth Heafield <github@kheafield.com>2012-11-17 00:22:34 +0400
commitab1e10c555111ff8aa4e948588ce86cff3c93a88 (patch)
tree1f587c196479b3de7ecdeb1a2be514f7024c5728 /search
parent78031aa65d7a29b0c84a3684e5ff7e4fce162708 (diff)
Compiler error for boost < 1.42
Diffstat (limited to 'search')
-rw-r--r--search/vertex_generator.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/search/vertex_generator.hh b/search/vertex_generator.hh
index da563c2df..58a3cb869 100644
--- a/search/vertex_generator.hh
+++ b/search/vertex_generator.hh
@@ -8,6 +8,10 @@
#include <boost/unordered_map.hpp>
#include <boost/version.hpp>
+#if BOOST_VERSION < 104200
+#include "util/exception.hh"
+#endif
+
namespace lm {
namespace ngram {
class ChartState;