We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc8731 commit 7468112Copy full SHA for 7468112
src/monodroid/jni/embedded-assemblies.hh
@@ -334,7 +334,9 @@ namespace xamarin::android::internal {
334
template<bool IsSatelliteAssembly>
335
static constexpr size_t get_mangled_data_size ()
336
{
337
- return SharedConstants::MANGLED_ASSEMBLY_REGULAR_ASSEMBLY_MARKER.size () + get_mangled_prefix_length<IsSatelliteAssembly> ();
+ return SharedConstants::MANGLED_ASSEMBLY_REGULAR_ASSEMBLY_MARKER.size () +
338
+ get_mangled_prefix_length<IsSatelliteAssembly> () +
339
+ 1; // For the extra `-` char in the culture portion of satellite assembly's name;
340
}
341
342
0 commit comments