File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
src/CLR/Core/Serialization Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -287,16 +287,10 @@ __nfweak void CLR_RT_BinaryFormatter::PrepareForGC(void *data)
287287 NATIVE_PROFILE_CLR_SERIALIZATION ();
288288}
289289
290- __nfweak HRESULT CLR_RT_BinaryFormatter::Serialize (
291- CLR_RT_HeapBlock &refData,
292- CLR_RT_HeapBlock &object,
293- CLR_RT_HeapBlock *cls,
294- CLR_UINT32 flags)
290+ __nfweak HRESULT CLR_RT_BinaryFormatter::Serialize (CLR_RT_HeapBlock &refData, CLR_RT_HeapBlock &object)
295291{
296292 (void )refData;
297293 (void )object;
298- (void )cls;
299- (void )flags;
300294
301295 NATIVE_PROFILE_CLR_SERIALIZATION ();
302296 NANOCLR_FEATURE_STUB_RETURN ();
@@ -305,13 +299,11 @@ __nfweak HRESULT CLR_RT_BinaryFormatter::Serialize(
305299__nfweak HRESULT CLR_RT_BinaryFormatter::Deserialize (
306300 CLR_RT_HeapBlock &refData,
307301 CLR_RT_HeapBlock &object,
308- CLR_RT_HeapBlock *cls,
309302 CLR_UINT32 *unknownType,
310303 CLR_UINT32 flags)
311304{
312305 (void )refData;
313306 (void )object;
314- (void )cls;
315307 (void )unknownType;
316308 (void )flags;
317309
You can’t perform that action at this time.
0 commit comments