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.sakai21@gmail.com>2011-12-08 09:18:37 +0400
committerTetsuo Kiso <tetsuo.sakai21@gmail.com>2011-12-08 09:18:37 +0400
commit442ddb74587d59f1df13e8177af5db6c8657446f (patch)
treea6cbcbb82c79598c87e271e6052066c91152e8bd /mert/FeatureDataIterator.h
parent61568a602d1656ab1560a2387b9694b6dc3baa9c (diff)
Pass by reference.
Diffstat (limited to 'mert/FeatureDataIterator.h')
-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;
}
};