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

@@ -12,7 +12,7 @@ const int EPOCHS = 20;
class LSDBase : public testing::Test
{
public:
LSDBase() {};
LSDBase() { }
protected:
Mat test_image;
@@ -30,7 +30,7 @@ protected:
class Imgproc_LSD_ADV: public LSDBase
{
public:
Imgproc_LSD_ADV() {};
Imgproc_LSD_ADV() { }
protected:
};
@@ -38,7 +38,7 @@ protected:
class Imgproc_LSD_STD: public LSDBase
{
public:
Imgproc_LSD_STD() {};
Imgproc_LSD_STD() { }
protected:
};
@@ -46,7 +46,7 @@ protected:
class Imgproc_LSD_NONE: public LSDBase
{
public:
Imgproc_LSD_NONE() {};
Imgproc_LSD_NONE() { }
protected:
};