Commit a9f6138f authored by Kaitlyn Lee's avatar Kaitlyn Lee
Browse files

Removed declaration of variables in functor.

parent 1149d451
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ void copyTrackPixels(Buffer &in, Buffer &out);
 */
class CopyPixelsFunctor {
  private:
    int m_offset = 0;
    int m_defaultValue = 0;
    int m_offset;
    int m_defaultValue;

  public:
    CopyPixelsFunctor(int offset, int defaultValue) {