blob: 8748fa73e41a956eb21e2e7617ccc7fcb90d232c [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 "garnet/bin/zxdb/symbols/type.h"
#include "garnet/bin/zxdb/symbols/symbol_utils.h"
#include "lib/fxl/logging.h"
namespace zxdb {
Type::Type(int kind) : Symbol(kind) {}
Type::~Type() = default;
const Type* Type::AsType() const { return this; }
const Type* Type::GetConcreteType() const { return this; }
} // namespace zxdb