Skip to content

Commit 377497f

Browse files
committed
[NFC][lldb] Replace usage of deprecated llvm::makeArrayRef
1 parent aa1eacd commit 377497f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/include/lldb/Symbol/VariableList.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class VariableList {
7676
const_iterator end() const { return m_variables.end(); }
7777

7878
llvm::ArrayRef<lldb::VariableSP> toArrayRef() {
79-
return llvm::makeArrayRef(m_variables);
79+
return llvm::ArrayRef(m_variables);
8080
}
8181

8282
protected:

0 commit comments

Comments
 (0)