Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmy Armbrust <amy@nullhybrid.net>2018-09-18 05:06:00 +0300
committerJan Kotas <jkotas@microsoft.com>2018-09-18 05:06:00 +0300
commit945dda39743c982e2f98e5df16ae62c27895d42a (patch)
tree1652a081603352e0514360549878a53df46ab516
parent282eca70f13668aa11072a43d0b6f3bbbac45636 (diff)
Use elaborated type specifiers to prevent meaning changes (#6341)
-rw-r--r--src/Native/ObjWriter/cordebuginfo.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Native/ObjWriter/cordebuginfo.h b/src/Native/ObjWriter/cordebuginfo.h
index 9e8641fa7..46d74c2e1 100644
--- a/src/Native/ObjWriter/cordebuginfo.h
+++ b/src/Native/ObjWriter/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;
};
};