1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Merge pull request #2164 from ilya-lavrenov:excess_commas_semicolons_v2

This commit is contained in:
Roman Donchenko
2014-01-20 14:15:04 +04:00
committed by OpenCV Buildbot
68 changed files with 442 additions and 413 deletions
+1 -1
View File
@@ -34,7 +34,7 @@
#import <AssetsLibrary/AssetsLibrary.h>
static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;};
static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;}
#pragma mark - Private Interface
+5 -5
View File
@@ -59,11 +59,11 @@ class BaseImageDecoder
{
public:
BaseImageDecoder();
virtual ~BaseImageDecoder() {};
virtual ~BaseImageDecoder() {}
int width() const { return m_width; };
int height() const { return m_height; };
virtual int type() const { return m_type; };
int width() const { return m_width; }
int height() const { return m_height; }
virtual int type() const { return m_type; }
virtual bool setSource( const String& filename );
virtual bool setSource( const Mat& buf );
@@ -90,7 +90,7 @@ class BaseImageEncoder
{
public:
BaseImageEncoder();
virtual ~BaseImageEncoder() {};
virtual ~BaseImageEncoder() {}
virtual bool isFormatSupported( int depth ) const;
virtual bool setDestination( const String& filename );
+1 -1
View File
@@ -79,7 +79,7 @@ enum rgbe_error_codes {
rgbe_read_error,
rgbe_write_error,
rgbe_format_error,
rgbe_memory_error,
rgbe_memory_error
};
/* default error routine. change this to change error handling */