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/util
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2013-01-05 00:00:04 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-01-05 00:00:04 +0400
commit43337dfde3f172099626606dacab2234f3563ac9 (patch)
tree3f0250fc57c6a3b014380310427aa116f1d7d70a /util
parent1dfbe1113c39f5611024c113206b96696f7184a8 (diff)
get rid of HAVE_BOOST macro. Always has boost now
Diffstat (limited to 'util')
-rw-r--r--util/have.hh4
-rw-r--r--util/string_piece.hh6
2 files changed, 0 insertions, 10 deletions
diff --git a/util/have.hh b/util/have.hh
index 62c6dc1a1..b00ca2c77 100644
--- a/util/have.hh
+++ b/util/have.hh
@@ -6,10 +6,6 @@
//#define HAVE_ICU
#endif
-#ifndef HAVE_BOOST
-#define HAVE_BOOST
-#endif
-
#ifndef HAVE_THREADS
//#define HAVE_THREADS
#endif
diff --git a/util/string_piece.hh b/util/string_piece.hh
index ff18744bc..163fe62d3 100644
--- a/util/string_piece.hh
+++ b/util/string_piece.hh
@@ -49,11 +49,7 @@
#define BASE_STRING_PIECE_H__
#include "util/have.hh"
-
-#ifdef HAVE_BOOST
#include <boost/functional/hash/hash.hpp>
-#endif // HAVE_BOOST
-
#include <cstring>
#include <iosfwd>
#include <ostream>
@@ -256,7 +252,6 @@ inline std::ostream& operator<<(std::ostream& o, const StringPiece& piece) {
return o.write(piece.data(), static_cast<std::streamsize>(piece.size()));
}
-#ifdef HAVE_BOOST
inline size_t hash_value(const StringPiece &str) {
return boost::hash_range(str.data(), str.data() + str.length());
}
@@ -290,7 +285,6 @@ template <class T> typename T::iterator FindStringPiece(T &t, const StringPiece
return t.find(key, StringPieceCompatibleHash(), StringPieceCompatibleEquals());
#endif
}
-#endif
#ifdef HAVE_ICU
U_NAMESPACE_END