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
commite48de47c2381547f78f4dbd89f4fa3e76ba0c6bf (patch)
treecdcbb888209bee7dd9c02a7d678cce4262c35416 /util/file_piece.hh
parent7927979298644923cf02ad6c757c3d7c209e365a (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() {}
};