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,14 +1895,14 @@ public:
|
||||
ResizeASyncWorker(Nan::Callback *callback, Matrix *image, cv::Size size, double fx, double fy, int interpolation) :
|
||||
Nan::AsyncWorker(callback),
|
||||
image(image),
|
||||
dest(NULL),
|
||||
size(size),
|
||||
fx(fx),
|
||||
fy(fy),
|
||||
interpolation(interpolation),
|
||||
success(0),
|
||||
dest(NULL){
|
||||
success(0) {
|
||||
}
|
||||
|
||||
|
||||
~ResizeASyncWorker() {
|
||||
// don't leave this if it was allocated
|
||||
// could happen if NaN does not call HandleSuccess?
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user