From 6307f8d9e38821ea6e1526fa013cce155911d9dd Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 6 Nov 2022 11:11:38 -0800 Subject: [PATCH] core: fix warning breaking linux builds --- app/core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/core.cpp b/app/core.cpp index 2523c00e0..a8ae02e47 100644 --- a/app/core.cpp +++ b/app/core.cpp @@ -87,9 +87,9 @@ Core::Core(const CoreParams& params) : addable_object_(Tool::kAddableEmpty), snapping_(true), core_params_(params), + magic_(false), pixel_sampling_users_(0), - shown_cache_full_warning_(false), - magic_(false) + shown_cache_full_warning_(false) { // Store reference to this object, making the assumption that Core will only ever be made in // main(). This will obviously break if not.