diff options
| -rw-r--r-- | llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h b/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h index b47d5423e0b..59febb7b464 100644 --- a/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h +++ b/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h @@ -1103,7 +1103,7 @@ private: // LF_METHODLIST class MethodOverloadListRecord : public TypeRecord { public: - MethodOverloadListRecord(std::vector<OneMethodRecord> &Methods) + MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} /// Rewrite member type indices with IndexMap. Returns false if a type index |

