From d81f2635cc2f26370ea691b9d109cc8246d86472 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Mon, 17 Sep 2018 22:42:40 -0700 Subject: [PATCH] Use elaborated type specifiers to prevent meaning changes (#20019) Port https://github.com/dotnet/corert/pull/6341/ to CoreCLR --- src/inc/cordebuginfo.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/inc/cordebuginfo.h b/src/inc/cordebuginfo.h index 8c076e8b68..bbe4de8739 100644 --- a/src/inc/cordebuginfo.h +++ b/src/inc/cordebuginfo.h @@ -294,15 +294,15 @@ public: union { - vlReg vlReg; - vlStk vlStk; - vlRegReg vlRegReg; - vlRegStk vlRegStk; - vlStkReg vlStkReg; - vlStk2 vlStk2; - vlFPstk vlFPstk; - vlFixedVarArg vlFixedVarArg; - vlMemory vlMemory; + ICorDebugInfo::vlReg vlReg; + ICorDebugInfo::vlStk vlStk; + ICorDebugInfo::vlRegReg vlRegReg; + ICorDebugInfo::vlRegStk vlRegStk; + ICorDebugInfo::vlStkReg vlStkReg; + ICorDebugInfo::vlStk2 vlStk2; + ICorDebugInfo::vlFPstk vlFPstk; + ICorDebugInfo::vlFixedVarArg vlFixedVarArg; + ICorDebugInfo::vlMemory vlMemory; }; }; -- 2.34.1