llvm/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp

//===-- PdbSymUid.cpp -----------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "PdbSymUid.h"

usingnamespacelldb_private;
usingnamespacelldb_private::npdb;
usingnamespacellvm::codeview;

namespace {
struct GenericIdRepr {};

struct CompilandIdRepr {};

struct CompilandSymIdRepr {};

struct GlobalSymIdRepr {};

struct TypeSymIdRepr {};

struct FieldListMemberIdRepr {};

static_assert;
static_assert;
static_assert;
static_assert;
static_assert;
} // namespace

template <typename OutT, typename InT> static OutT repr_cast(const InT &value) {}

PdbSymUid::PdbSymUid(const PdbCompilandId &cid) {}

PdbSymUid::PdbSymUid(const PdbCompilandSymId &csid) {}

PdbSymUid::PdbSymUid(const PdbGlobalSymId &gsid) {}

PdbSymUid::PdbSymUid(const PdbTypeSymId &tsid) {}

PdbSymUid::PdbSymUid(const PdbFieldListMemberId &flmid) {}

PdbSymUidKind PdbSymUid::kind() const {}

PdbCompilandId PdbSymUid::asCompiland() const {}

PdbCompilandSymId PdbSymUid::asCompilandSym() const {}

PdbGlobalSymId PdbSymUid::asGlobalSym() const {}

PdbTypeSymId PdbSymUid::asTypeSym() const {}

PdbFieldListMemberId PdbSymUid::asFieldListMember() const {}