Skip to content

Commit 534a980

Browse files
committed
Remove commented code
1 parent 5c84183 commit 534a980

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

src/CLR/Core/Execution.cpp

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2078,31 +2078,6 @@ HRESULT CLR_RT_ExecutionEngine::InitializeLocals(
20782078
cls,
20792079
dt);
20802080

2081-
//// parse the locals-signature to extract that T
2082-
// CLR_RT_SignatureParser parser;
2083-
// parser.Initialize_MethodLocals(assembly, methodDef);
2084-
// CLR_RT_SignatureParser::Element sigElement;
2085-
2086-
//// ensure we don’t walk past the available generic parameters
2087-
// const int maxParams = methodDefInstance.target->genericParamCount;
2088-
// if (genericParamPosition < 0 || genericParamPosition > maxParams)
2089-
//{
2090-
// NANOCLR_SET_AND_LEAVE(CLR_E_OUT_OF_RANGE);
2091-
// }
2092-
2093-
//// advance into the VAR entry
2094-
// parser.Advance(sigElement);
2095-
2096-
//// walk forward to the Nth generic-parameter
2097-
// for (int i = 0; i < genericParamPosition; i++)
2098-
//{
2099-
// parser.Advance(sigElement);
2100-
// }
2101-
2102-
//// element.Class and element.DataType represent the T
2103-
// cls = sigElement.Class;
2104-
// dt = sigElement.DataType;
2105-
21062081
goto done;
21072082
}
21082083

0 commit comments

Comments
 (0)