diff options
Diffstat (limited to 'source/Core/ValueObjectList.cpp')
-rw-r--r-- | source/Core/ValueObjectList.cpp | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/source/Core/ValueObjectList.cpp b/source/Core/ValueObjectList.cpp index 7a7e0d8417b7e..358a1b14517b9 100644 --- a/source/Core/ValueObjectList.cpp +++ b/source/Core/ValueObjectList.cpp @@ -1,9 +1,8 @@ //===-- ValueObjectList.cpp -------------------------------------*- C++ -*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -18,13 +17,6 @@ using namespace lldb; using namespace lldb_private; -ValueObjectList::ValueObjectList() : m_value_objects() {} - -ValueObjectList::ValueObjectList(const ValueObjectList &rhs) - : m_value_objects(rhs.m_value_objects) {} - -ValueObjectList::~ValueObjectList() {} - const ValueObjectList &ValueObjectList::operator=(const ValueObjectList &rhs) { if (this != &rhs) m_value_objects = rhs.m_value_objects; |