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/mert
diff options
context:
space:
mode:
authorTetsuo Kiso <tetsuo.sakai21@gmail.com>2011-12-08 09:18:37 +0400
committerTetsuo Kiso <tetsuo.sakai21@gmail.com>2011-12-08 09:18:37 +0400
commit95653828f992f0695a6e8ea2611e544e1c3d79e2 (patch)
treea6cbcbb82c79598c87e271e6052066c91152e8bd /mert
parent62d03a80f407eabc9528c41e84cb235960cf8094 (diff)
Pass by reference.
Diffstat (limited to 'mert')
-rw-r--r--mert/FeatureDataIterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mert/FeatureDataIterator.h b/mert/FeatureDataIterator.h
index b05f78214..81f072970 100644
--- a/mert/FeatureDataIterator.h
+++ b/mert/FeatureDataIterator.h
@@ -41,7 +41,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
class FileFormatException : public util::Exception
{
public:
- explicit FileFormatException(const std::string filename, const std::string& line) {
+ explicit FileFormatException(const std::string& filename, const std::string& line) {
*this << "Error in line \"" << line << "\" of " << filename;
}
};