Skip to content
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
4 changes: 2 additions & 2 deletions src/coreclr/pal/inc/pal_assert.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ extern "C" {
fprintf (stderr, \
"ASSERT FAILED\n" \
"\tExpression: %s\n" \
"\tLocation: line %d in %s\n" \
"\tLocation: %s:%d\n" \
"\tFunction: %s\n" \
"\tProcess: %d\n", \
#e, __LINE__, __FILE__, __FUNCTION__, \
#e, __FILE__, __LINE__, __FUNCTION__, \
GetCurrentProcessId()); \
DebugBreak(); \
} \
Expand Down
2 changes: 2 additions & 0 deletions src/coreclr/tools/metainfo/mdinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ const char *g_szMapElementType[] =
"CMOD_REQD",
"CMOD_OPT",
"INTERNAL",
"CMOD_INTERNAL",
};

const char *g_szMapUndecorateType[] =
Expand Down Expand Up @@ -109,6 +110,7 @@ const char *g_szMapUndecorateType[] =
"CMOD_REQD",
"CMOD_OPT",
"INTERNAL",
"CMOD_INTERNAL",
};

// Provide enough entries for IMAGE_CEE_CS_CALLCONV_MASK (defined in CorHdr.h)
Expand Down
Loading