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:
authorKenneth Heafield <github@kheafield.com>2012-02-28 22:58:00 +0400
committerKenneth Heafield <github@kheafield.com>2012-02-28 22:58:00 +0400
commit1be424bcb329eac4c997c790fac55d9df47a2ede (patch)
treecdcbb888209bee7dd9c02a7d678cce4262c35416 /util/file_piece.hh
parentbf54a5f38bd150fe295b8a30c13c4d07b0d0e977 (diff)
KenLM 98814b2 including faster malloc-backed building and portability improvements
Diffstat (limited to 'util/file_piece.hh')
-rw-r--r--util/file_piece.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/file_piece.hh b/util/file_piece.hh
index 2e4a91bbd..af93d8aab 100644
--- a/util/file_piece.hh
+++ b/util/file_piece.hh
@@ -27,7 +27,9 @@ class ParseNumberException : public Exception {
class GZException : public Exception {
public:
+#ifdef HAVE_ZLIB
explicit GZException(gzFile file);
+#endif
GZException() throw() {}
~GZException() throw() {}
};