deleted excess semicolons, commas

This commit is contained in:
Ilya Lavrenov
2014-01-18 01:30:29 +04:00
parent e965f3d3d4
commit 37789f015a
68 changed files with 442 additions and 413 deletions

View File

@@ -190,7 +190,7 @@ public:
public:
virtual ~MaskGenerator() {}
virtual Mat generateMask(const Mat& src)=0;
virtual void initializeMask(const Mat& /*src*/) {};
virtual void initializeMask(const Mat& /*src*/) { }
};
virtual void setMaskGenerator(const Ptr<MaskGenerator>& maskGenerator) = 0;
virtual Ptr<MaskGenerator> getMaskGenerator() = 0;

View File

@@ -67,7 +67,7 @@ public:
//! Constructor
explicit ERStat(int level = 256, int pixel = 0, int x = 0, int y = 0);
//! Destructor
~ERStat(){};
~ERStat() { }
//! seed point and the threshold (max grey-level value)
int pixel;
@@ -123,7 +123,7 @@ public:
class CV_EXPORTS Callback
{
public:
virtual ~Callback(){};
virtual ~Callback() { }
//! The classifier must return probability measure for the region.
virtual double eval(const ERStat& stat) = 0; //const = 0; //TODO why cannot use const = 0 here?
};