react-native-windows 0.74.27 → 0.74.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -283,7 +283,9 @@ struct JsiAbiRuntime : facebook::jsi::Runtime {
|
|
|
283
283
|
~ValueRef() noexcept;
|
|
284
284
|
operator facebook::jsi::Value const &() const noexcept;
|
|
285
285
|
|
|
286
|
-
|
|
286
|
+
struct alignas(std::max_align_t) StoreType {
|
|
287
|
+
std::byte buffer[sizeof(DataPointerValue)];
|
|
288
|
+
};
|
|
287
289
|
static void InitValueRef(JsiValueRef const &data, facebook::jsi::Value *value, StoreType *store) noexcept;
|
|
288
290
|
|
|
289
291
|
private:
|
|
@@ -307,7 +309,9 @@ struct JsiAbiRuntime : facebook::jsi::Runtime {
|
|
|
307
309
|
~PropNameIDRef() noexcept;
|
|
308
310
|
operator facebook::jsi::PropNameID const &() const noexcept;
|
|
309
311
|
|
|
310
|
-
|
|
312
|
+
struct alignas(std::max_align_t) StoreType {
|
|
313
|
+
std::byte buffer[sizeof(DataPointerValue)];
|
|
314
|
+
};
|
|
311
315
|
|
|
312
316
|
private:
|
|
313
317
|
StoreType m_pointerStore{};
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.74.
|
|
13
|
+
<ReactNativeWindowsVersion>0.74.29</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>74</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>29</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>c15cbb774b3faa73f63778955cc8a4085e39210e</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
|
@@ -66,6 +66,12 @@
|
|
|
66
66
|
<PreprocessorDefinitions Condition="'$(UseV8)'=='true'">USE_V8;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
67
67
|
<PreprocessorDefinitions Condition="'$(UseFabric)'=='true'">USE_FABRIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
68
68
|
<PreprocessorDefinitions>JSI_VERSION=11;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
69
|
+
<!--
|
|
70
|
+
To address the crash on the first call to std::mutex::lock.
|
|
71
|
+
See: https://github.com/microsoft/STL/wiki/Changelog#vs-2022-1710
|
|
72
|
+
https://stackoverflow.com/questions/78598141/first-stdmutexlock-crashes-in-application-built-with-latest-visual-studio
|
|
73
|
+
-->
|
|
74
|
+
<PreprocessorDefinitions>_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
69
75
|
</ClCompile>
|
|
70
76
|
</ItemDefinitionGroup>
|
|
71
77
|
|