Fix comments referencing non-existent CorInfoFlags value. (#549)
authorBruce Forstall <brucefo@microsoft.com>
Thu, 5 Dec 2019 04:40:57 +0000 (20:40 -0800)
committerJan Kotas <jkotas@microsoft.com>
Thu, 5 Dec 2019 04:40:57 +0000 (20:40 -0800)
src/coreclr/src/inc/corinfo.h

index 822ca2b..d40e74d 100644 (file)
@@ -2026,7 +2026,7 @@ public:
     //
     /**********************************************************************************/
 
-    // return flags (defined above, CORINFO_FLG_PUBLIC ...)
+    // return flags (a bitfield of CorInfoFlags values)
     virtual DWORD getMethodAttribs (
             CORINFO_METHOD_HANDLE       ftn         /* IN */
             ) = 0;
@@ -2370,7 +2370,7 @@ public:
     //     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;