Skip to content

Commit ad206cf

Browse files
author
Clement Champetier
committed
ImageDesc: refactoring
* Suppress default constructor.
1 parent c2f7459 commit ad206cf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/AvTranscoder/DatasStructures/Image.hpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ namespace avtranscoder
3535
class AvExport ImageDesc
3636
{
3737
public:
38-
ImageDesc()
39-
{};
40-
4138
void setWidth ( const size_t width ) { m_width = width; }
4239
void setHeight( const size_t height ) { m_height = height; }
4340
void setPixel ( const Pixel pixel ) { m_pixel = pixel; }
@@ -65,7 +62,6 @@ class AvExport ImageDesc
6562
}
6663

6764
private:
68-
6965
size_t m_width;
7066
size_t m_height;
7167
Ratio m_displayAspectRatio;

0 commit comments

Comments
 (0)