Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mscorlib declaration #1376

Merged
merged 2 commits into from
Jun 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/CLR/CorLib/corlib_native.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ static const CLR_RT_MethodHandler method_lookup[] =
NULL,
NULL,
NULL,
NULL,
Library_corlib_native_System_DateTime::DaysInMonth___STATIC__I4__I4__I4,
NULL,
Library_corlib_native_System_DateTime::get_UtcNow___STATIC__SystemDateTime,
Expand All @@ -342,6 +343,7 @@ static const CLR_RT_MethodHandler method_lookup[] =
NULL,
NULL,
NULL,
NULL,
Library_corlib_native_System_Diagnostics_Debugger::get_IsAttached___STATIC__BOOLEAN,
Library_corlib_native_System_Diagnostics_Debugger::Break___STATIC__VOID,
NULL,
Expand Down Expand Up @@ -902,7 +904,7 @@ static const CLR_RT_MethodHandler method_lookup[] =
const CLR_RT_NativeAssemblyData g_CLR_AssemblyNative_mscorlib =
{
"mscorlib",
0xDF5364AB,
0x2F98F004,
method_lookup,
{ 1, 2, 0, 0 }
{ 1, 2, 1, 0 }
};
1 change: 1 addition & 0 deletions src/CLR/CorLib/corlib_native.h
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ struct Library_corlib_native_System_DateTime
{
static const int FIELD_STATIC__MinValue = 2;
static const int FIELD_STATIC__MaxValue = 3;
static const int FIELD_STATIC__UnixEpoch = 4;

static const int FIELD___ticks = 1;

Expand Down