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:
authorTetsuo Kiso <tetsuo-s@is.naist.jp>2012-03-20 18:48:52 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2012-03-20 18:48:52 +0400
commitccae7bae6ee57f5601a88c08e107d7474c4e7689 (patch)
tree08967a865b0e8ead1e503cda46c7f78579f3fb55 /mert/FileStream.cpp
parent3a73c5990d3927f96d80bbf7945e8db9977751e2 (diff)
Rename gzfilebuf.h; apply coding style.
Diffstat (limited to 'mert/FileStream.cpp')
-rw-r--r--mert/FileStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mert/FileStream.cpp b/mert/FileStream.cpp
index 93b7138b2..1a52e53fa 100644
--- a/mert/FileStream.cpp
+++ b/mert/FileStream.cpp
@@ -1,7 +1,7 @@
#include "FileStream.h"
#include <stdexcept>
-#include "gzfilebuf.h"
+#include "GzFileBuf.h"
using namespace std;
@@ -22,7 +22,7 @@ inputfilestream::inputfilestream(const std::string &filePath)
if (IsGzipFile(filePath)) {
fb->close();
delete fb;
- m_streambuf = new gzfilebuf(filePath.c_str());
+ m_streambuf = new GzFileBuf(filePath.c_str());
} else {
m_streambuf = fb;
}