Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
Signed-off-by: Rosen Penev <[email protected]>
  • Loading branch information
neheb committed Jan 27, 2023
1 parent 12bf3fd commit a6b4da3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions include/exiv2/asfvideo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class EXIV2API AsfVideo : public Image {
explicit AsfVideo(BasicIo::UniquePtr io);

//! Copy constructor
AsfVideo(const AsfVideo& rhs) = delete;
AsfVideo(const AsfVideo&) = delete;
//! Assignment operator
AsfVideo& operator=(const AsfVideo& rhs) = delete;
AsfVideo& operator=(const AsfVideo&) = delete;
//@}

//! @name Manipulators
Expand Down Expand Up @@ -170,4 +170,4 @@ EXIV2API bool isAsfType(BasicIo& iIo, bool advance);

} // namespace Exiv2

#endif // #ifndef ASFVIDEO_HPP_
#endif // #ifndef ASFVIDEO_HPP_
4 changes: 2 additions & 2 deletions include/exiv2/riffvideo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ class EXIV2API RiffVideo : public Image {
explicit RiffVideo(BasicIo::UniquePtr io);

//! Copy constructor
RiffVideo(const RiffVideo& rhs) = delete;
RiffVideo(const RiffVideo&) = delete;
//! Assignment operator
RiffVideo& operator=(const RiffVideo& rhs) = delete;
RiffVideo& operator=(const RiffVideo&) = delete;

//@}

Expand Down

0 comments on commit a6b4da3

Please sign in to comment.