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/FeatureStats.cpp
parent664ffe0130e76a32571965a5f9fce1f6ff176ae1 (diff)
Remove unnecessary semicolons used in end of member functions.
Diffstat (limited to 'mert/FeatureStats.cpp')
-rw-r--r--mert/FeatureStats.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/mert/FeatureStats.cpp b/mert/FeatureStats.cpp
index cf8ae57f8..570980c97 100644
--- a/mert/FeatureStats.cpp
+++ b/mert/FeatureStats.cpp
@@ -86,12 +86,12 @@ FeatureStats::FeatureStats()
available_ = AVAILABLE_;
entries_ = 0;
array_ = new FeatureStatsType[available_];
-};
+}
FeatureStats::~FeatureStats()
{
delete [] array_;
-};
+}
FeatureStats::FeatureStats(const FeatureStats &stats)
{
@@ -100,7 +100,7 @@ FeatureStats::FeatureStats(const FeatureStats &stats)
array_ = new FeatureStatsType[available_];
memcpy(array_,stats.getArray(),featbytes_);
map_ = stats.getSparse();
-};
+}
FeatureStats::FeatureStats(const size_t size)
{
@@ -108,8 +108,7 @@ FeatureStats::FeatureStats(const size_t size)
entries_ = size;
array_ = new FeatureStatsType[available_];
memset(array_,0,featbytes_);
-};
-
+}
FeatureStats::FeatureStats(std::string &theString)
{