diff options
Diffstat (limited to 'include/lldb/Core/ValueObjectConstResultChild.h')
-rw-r--r-- | include/lldb/Core/ValueObjectConstResultChild.h | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/include/lldb/Core/ValueObjectConstResultChild.h b/include/lldb/Core/ValueObjectConstResultChild.h index f14fb75640e65..16fa74f71ed57 100644 --- a/include/lldb/Core/ValueObjectConstResultChild.h +++ b/include/lldb/Core/ValueObjectConstResultChild.h @@ -1,9 +1,8 @@ //===-- ValueObjectConstResultChild.h ----------------------------*- 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 // //===----------------------------------------------------------------------===// @@ -20,26 +19,18 @@ #include <stddef.h> #include <stdint.h> + namespace lldb_private { class DataExtractor; -} -namespace lldb_private { class Status; -} -namespace lldb_private { class ValueObject; -} - -namespace lldb_private { -//---------------------------------------------------------------------- // A child of a ValueObjectConstResult. -//---------------------------------------------------------------------- class ValueObjectConstResultChild : public ValueObjectChild { public: ValueObjectConstResultChild(ValueObject &parent, const CompilerType &compiler_type, - const ConstString &name, uint32_t byte_size, + ConstString name, uint32_t byte_size, int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, bool is_base_class, bool is_deref_of_parent, |