Skip to content

Commit 25d29ba

Browse files
committed
Set specific values for VariableInfoFormat_e enum and remove kNumVariableInfoFormats (MI)
llvm-svn: 237438
1 parent fbc88aa commit 25d29ba

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,9 @@ class CMICmnLLDBDebugSessionInfo : public CMICmnBase, public MI::ISingleton<CMIC
110110
//--
111111
enum VariableInfoFormat_e
112112
{
113-
eVariableInfoFormat_NoValues,
114-
eVariableInfoFormat_AllValues,
115-
eVariableInfoFormat_SimpleValues,
116-
kNumVariableInfoFormats
113+
eVariableInfoFormat_NoValues = 0,
114+
eVariableInfoFormat_AllValues = 1,
115+
eVariableInfoFormat_SimpleValues = 2
117116
};
118117

119118
//++ ===================================================================

0 commit comments

Comments
 (0)