Skip to content

Commit 31cf757

Browse files
authored
Merge branch 'main' into cmake-windows
2 parents a0b2f62 + a730194 commit 31cf757

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/modules

tests/unittests/PalTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ TEST_F(PalTests, SdkVersion)
122122
EXPECT_THAT(std::count(v.cbegin(), v.cend(), '-'), Eq(4));
123123
EXPECT_THAT(v, StartsWith(EVTSDK_VERSION_PREFIX "-"));
124124
EXPECT_THAT(v.at(v.find('-', 0) + 1), Ne('-'));
125-
EXPECT_THAT(v, HasSubstr("-C++-No-"));
125+
EXPECT_THAT(v, HasSubstr(std::string("-C++-" ECS_SUPP "-")));
126126
EXPECT_THAT(v, EndsWith(BUILD_VERSION_STR));
127127

128128
EXPECT_THAT(PAL::getSdkVersion(), Eq(v));

tools/fiddler/OneDSInspector/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<package id="Bond.Compiler" version="9.0.4" targetFramework="net461" />
44
<package id="Bond.Core.CSharp" version="9.0.3" targetFramework="net461" />
55
<package id="Bond.Runtime.CSharp" version="9.0.3" targetFramework="net461" />
6-
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net461" />
6+
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net461" />
77
</packages>

tools/server/server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReference Include="Bond.Compiler" Version="9.0.4" />
2020
<PackageReference Include="Bond.Core.CSharp" Version="9.0.3" />
2121
<PackageReference Include="Bond.Runtime.CSharp" Version="9.0.3" />
22-
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
22+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
2323
</ItemGroup>
2424

2525
<Import Project="../decoder/decoder.projitems" Label="Shared" />

wrappers/obj-c/ODWLogConfiguration.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ -(nullable ILogConfiguration*)getWrappedConfiguration
311311
+(nullable ODWLogConfiguration *)getLogConfigurationCopy
312312
{
313313
auto& config = LogManager::GetLogConfiguration();
314-
static ILogConfiguration configCopy(config);
315-
return [[ODWLogConfiguration alloc] initWithILogConfiguration: &configCopy];
314+
auto configCopy = new ILogConfiguration(config);
315+
return [[ODWLogConfiguration alloc] initWithILogConfiguration: configCopy];
316316
}
317317

318318
+(void)setEventCollectorUri:(nonnull NSString *)eventCollectorUri

0 commit comments

Comments
 (0)