From 002111b4f7e275608ee91b89b896bd362afe2ed3 Mon Sep 17 00:00:00 2001 From: Gieta Laksmana Date: Mon, 15 Jul 2024 23:30:22 -0700 Subject: [PATCH] make _wrappedConfiguration into member variable --- wrappers/obj-c/ODWLogConfiguration.mm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wrappers/obj-c/ODWLogConfiguration.mm b/wrappers/obj-c/ODWLogConfiguration.mm index d69ddf70c..06d31adfc 100644 --- a/wrappers/obj-c/ODWLogConfiguration.mm +++ b/wrappers/obj-c/ODWLogConfiguration.mm @@ -288,11 +288,13 @@ The minimum time (ms) between storage full notifications. NSString *const ODWCFG_BOOL_SESSION_RESET_ENABLED = @"sessionResetEnabled"; @implementation ODWLogConfiguration +{ + ILogConfiguration* _wrappedConfiguration; +} static bool _enableTrace; static bool _enableConsoleLogging; static bool _enableSessionReset; static bool _surfaceCppExceptions; - ILogConfiguration* _wrappedConfiguration; -(instancetype)initWithILogConfiguration:(ILogConfiguration*)config {