blob: 8dfcaec87c0ec29a7c4c9568e1dea6813bd90f64 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/developer/debug/zxdb/symbols/type.h"
#include "src/lib/fxl/logging.h"
#include "src/developer/debug/zxdb/symbols/symbol_utils.h"
namespace zxdb {
Type::Type(DwarfTag kind) : Symbol(kind) { FXL_DCHECK(DwarfTagIsType(kind)); }
Type::~Type() = default;
const Type* Type::AsType() const { return this; }
const Type* Type::GetConcreteType() const { return this; }
} // namespace zxdb