Skip to content

Commit 1e9324a

Browse files
committed
[lldb] Namespace SBSourceLanguageName (NFC)
1 parent b672d9e commit 1e9324a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/include/lldb/API/SBExpressionOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class LLDB_API SBExpressionOptions {
7171
/// Set the language using a pair of language code and version as
7272
/// defined by the DWARF 6 specification.
7373
/// WARNING: These codes may change until DWARF 6 is finalized.
74-
void SetLanguage(SBSourceLanguageName name, uint32_t version);
74+
void SetLanguage(lldb::SBSourceLanguageName name, uint32_t version);
7575

7676
#ifndef SWIG
7777
void SetCancelCallback(lldb::ExpressionCancelCallback callback, void *baton);

lldb/source/API/SBExpressionOptions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void SBExpressionOptions::SetLanguage(lldb::LanguageType language) {
156156
m_opaque_up->SetLanguage(language);
157157
}
158158

159-
void SBExpressionOptions::SetLanguage(SBSourceLanguageName name,
159+
void SBExpressionOptions::SetLanguage(lldb::SBSourceLanguageName name,
160160
uint32_t version) {
161161
LLDB_INSTRUMENT_VA(this, name, version);
162162

0 commit comments

Comments
 (0)