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>2011-11-12 04:40:01 +0400
committerTetsuo Kiso <tetsuo-s@is.naist.jp>2011-11-12 04:40:01 +0400
commitce9a628ed0337d051ce7058dcace2fa53df6d884 (patch)
treebcc9d8045725bd8553725b9acfd04b13e7a50a80 /mert/Util.cpp
parent664ffe0130e76a32571965a5f9fce1f6ff176ae1 (diff)
Remove unnecessary semicolons used in end of member functions.
Diffstat (limited to 'mert/Util.cpp')
-rw-r--r--mert/Util.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mert/Util.cpp b/mert/Util.cpp
index 244e8c791..b9077a2f6 100644
--- a/mert/Util.cpp
+++ b/mert/Util.cpp
@@ -54,7 +54,7 @@ size_t getNextPound(std::string &theString, std::string &substring, const std::s
}
}
return pos;
-};
+}
void split(const std::string &s, char delim, std::vector<std::string> &elems) {
std::stringstream ss(s);
@@ -143,12 +143,12 @@ int swapbytes(char *p, int sz, int n)
}
return 0;
-};
+}
void ResetUserTime()
{
g_timer.start();
-};
+}
void PrintUserTime(const std::string &message)
{