From 4778d8dd97cea436f31c437d18490f86a11abb63 Mon Sep 17 00:00:00 2001 From: Rodrigo Tobar Date: Tue, 24 Jul 2018 18:15:29 +0800 Subject: [PATCH] Correct member initialization order Signed-off-by: Rodrigo Tobar --- src/model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/model.cpp b/src/model.cpp index a89aff5..8ab0294 100644 --- a/src/model.cpp +++ b/src/model.cpp @@ -57,10 +57,10 @@ Model::Model(unsigned int width, unsigned int height) : convolver(), crop(true), dry_run(false), + return_finesampled(true), opencl_env(), omp_threads(0), - profiles(), - return_finesampled(true) + profiles() { // no-op }