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:
authorHieu Hoang <hieu@hoang.co.uk>2013-11-23 00:27:46 +0400
committerHieu Hoang <hieu@hoang.co.uk>2013-11-23 00:27:46 +0400
commitf13d0c824456b91fef2588261cbe52ce24c665ba (patch)
tree4c24ab4dff0c05840bcea2333ac522d9b956f7cf /moses/InputPath.cpp
parent028edf85501013ea06d575c67b5647f939f1f149 (diff)
UTIL_THROW_IF -> UTIL_THROW_IF2
Diffstat (limited to 'moses/InputPath.cpp')
-rw-r--r--moses/InputPath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/InputPath.cpp b/moses/InputPath.cpp
index 193e843d1..786cfa8a4 100644
--- a/moses/InputPath.cpp
+++ b/moses/InputPath.cpp
@@ -61,7 +61,7 @@ void InputPath::SetTargetPhrases(const PhraseDictionary &phraseDictionary
const Word &InputPath::GetLastWord() const
{
size_t len = m_phrase.GetSize();
- UTIL_THROW_IF(len == 0, util::Exception, "Input path phrase cannot be empty");
+ UTIL_THROW_IF2(len == 0, "Input path phrase cannot be empty");
const Word &ret = m_phrase.GetWord(len - 1);
return ret;
}