avoid warning about initilisation order

This commit is contained in:
Simon Hailes 2017-11-10 10:32:51 +00:00
parent 0b6b1f42cc
commit 6393a7f44e

View File

@ -1895,12 +1895,12 @@ public:
ResizeASyncWorker(Nan::Callback *callback, Matrix *image, cv::Size size, double fx, double fy, int interpolation) : ResizeASyncWorker(Nan::Callback *callback, Matrix *image, cv::Size size, double fx, double fy, int interpolation) :
Nan::AsyncWorker(callback), Nan::AsyncWorker(callback),
image(image), image(image),
dest(NULL),
size(size), size(size),
fx(fx), fx(fx),
fy(fy), fy(fy),
interpolation(interpolation), interpolation(interpolation),
success(0), success(0) {
dest(NULL){
} }
~ResizeASyncWorker() { ~ResizeASyncWorker() {