Skip to content

Commit

Permalink
Fix comments referencing non-existent CorInfoFlags value. (dotnet#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceForstall authored and jkotas committed Dec 5, 2019
1 parent f40e72f commit 61d5c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/src/inc/corinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ class ICorStaticInfo
//
/**********************************************************************************/

// return flags (defined above, CORINFO_FLG_PUBLIC ...)
// return flags (a bitfield of CorInfoFlags values)
virtual DWORD getMethodAttribs (
CORINFO_METHOD_HANDLE ftn /* IN */
) = 0;
Expand Down Expand Up @@ -2370,7 +2370,7 @@ class ICorStaticInfo
// GetTypeFromHandle(handle) == obj.GetType()
virtual BOOL canInlineTypeCheckWithObjectVTable(CORINFO_CLASS_HANDLE cls) = 0;

// return flags (defined above, CORINFO_FLG_PUBLIC ...)
// return flags (a bitfield of CorInfoFlags values)
virtual DWORD getClassAttribs (
CORINFO_CLASS_HANDLE cls
) = 0;
Expand Down

0 comments on commit 61d5c96

Please sign in to comment.