File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,11 +128,11 @@ class IOHandler {
128
128
129
129
FILE *GetErrorFILE ();
130
130
131
- lldb::FileSP & GetInputFileSP ();
131
+ lldb::FileSP GetInputFileSP ();
132
132
133
- lldb::StreamFileSP & GetOutputStreamFileSP ();
133
+ lldb::StreamFileSP GetOutputStreamFileSP ();
134
134
135
- lldb::StreamFileSP & GetErrorStreamFileSP ();
135
+ lldb::StreamFileSP GetErrorStreamFileSP ();
136
136
137
137
Debugger &GetDebugger () { return m_debugger; }
138
138
Original file line number Diff line number Diff line change @@ -103,11 +103,11 @@ FILE *IOHandler::GetErrorFILE() {
103
103
return (m_error_sp ? m_error_sp->GetFile ().GetStream () : nullptr );
104
104
}
105
105
106
- FileSP & IOHandler::GetInputFileSP () { return m_input_sp; }
106
+ FileSP IOHandler::GetInputFileSP () { return m_input_sp; }
107
107
108
- StreamFileSP & IOHandler::GetOutputStreamFileSP () { return m_output_sp; }
108
+ StreamFileSP IOHandler::GetOutputStreamFileSP () { return m_output_sp; }
109
109
110
- StreamFileSP & IOHandler::GetErrorStreamFileSP () { return m_error_sp; }
110
+ StreamFileSP IOHandler::GetErrorStreamFileSP () { return m_error_sp; }
111
111
112
112
bool IOHandler::GetIsInteractive () {
113
113
return GetInputFileSP () ? GetInputFileSP ()->GetIsInteractive () : false ;
You can’t perform that action at this time.
0 commit comments