mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
avoid warning about initilisation order
This commit is contained in:
parent
0b6b1f42cc
commit
6393a7f44e
@ -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() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user