@@ -112,24 +112,24 @@ static llvm::DefaultThreadPool *g_thread_pool = nullptr;
112112
113113static constexpr OptionEnumValueElement g_show_disassembly_enum_values[] = {
114114 {
115- Debugger ::eStopDisassemblyTypeNever,
115+ lldb ::eStopDisassemblyTypeNever,
116116 " never" ,
117117 " Never show disassembly when displaying a stop context." ,
118118 },
119119 {
120- Debugger ::eStopDisassemblyTypeNoDebugInfo,
120+ lldb ::eStopDisassemblyTypeNoDebugInfo,
121121 " no-debuginfo" ,
122122 " Show disassembly when there is no debug information." ,
123123 },
124124 {
125- Debugger ::eStopDisassemblyTypeNoSource,
125+ lldb ::eStopDisassemblyTypeNoSource,
126126 " no-source" ,
127127 " Show disassembly when there is no source information, or the source "
128128 " file "
129129 " is missing when displaying a stop context." ,
130130 },
131131 {
132- Debugger ::eStopDisassemblyTypeAlways,
132+ lldb ::eStopDisassemblyTypeAlways,
133133 " always" ,
134134 " Always show disassembly when displaying a stop context." ,
135135 },
@@ -611,10 +611,10 @@ uint64_t Debugger::GetStopSourceLineCount(bool before) const {
611611 idx, g_debugger_properties[idx].default_uint_value );
612612}
613613
614- Debugger ::StopDisassemblyType Debugger::GetStopDisassemblyDisplay () const {
614+ lldb ::StopDisassemblyType Debugger::GetStopDisassemblyDisplay () const {
615615 const uint32_t idx = ePropertyStopDisassemblyDisplay;
616- return GetPropertyAtIndexAs<Debugger ::StopDisassemblyType>(
617- idx, static_cast <Debugger ::StopDisassemblyType>(
616+ return GetPropertyAtIndexAs<lldb ::StopDisassemblyType>(
617+ idx, static_cast <lldb ::StopDisassemblyType>(
618618 g_debugger_properties[idx].default_uint_value ));
619619}
620620
0 commit comments