Skip to content

Commit 2069024

Browse files
authored
Merge pull request swiftlang#9065 from chelcassanova/cherrypick/fully-namespace-callback-parameters
[lldb] Fully namespace SBType callback function parameters (llvm#102375)
2 parents a6451e5 + c7b6dfa commit 2069024

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lldb/include/lldb/API/SBDefines.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@ class LLDB_API SBWatchpoint;
130130
class LLDB_API SBWatchpointOptions;
131131
class LLDB_API SBUnixSignals;
132132

133-
typedef bool (*SBBreakpointHitCallback)(void *baton, SBProcess &process,
134-
SBThread &thread,
133+
typedef bool (*SBBreakpointHitCallback)(void *baton, lldb::SBProcess &process,
134+
lldb::SBThread &thread,
135135
lldb::SBBreakpointLocation &location);
136136

137137
typedef void (*SBDebuggerDestroyCallback)(lldb::user_id_t debugger_id,
138138
void *baton);
139139

140-
typedef SBError (*SBPlatformLocateModuleCallback)(
141-
void *baton, const SBModuleSpec &module_spec, SBFileSpec &module_file_spec,
142-
SBFileSpec &symbol_file_spec);
140+
typedef lldb::SBError (*SBPlatformLocateModuleCallback)(
141+
void *baton, const lldb::SBModuleSpec &module_spec,
142+
lldb::SBFileSpec &module_file_spec, lldb::SBFileSpec &symbol_file_spec);
143143
}
144144

145145
#endif // LLDB_API_SBDEFINES_H

lldb/include/lldb/lldb-types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ typedef int pipe_t; // Host pipe type
7171

7272
typedef void (*LogOutputCallback)(const char *, void *baton);
7373
typedef bool (*CommandOverrideCallback)(void *baton, const char **argv);
74-
typedef bool (*ExpressionCancelCallback)(ExpressionEvaluationPhase phase,
74+
typedef bool (*ExpressionCancelCallback)(lldb::ExpressionEvaluationPhase phase,
7575
void *baton);
7676

7777
typedef void *ScriptObjectPtr;

0 commit comments

Comments
 (0)