llvm/lldb/source/Core/Declaration.cpp

//===-- Declaration.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 "lldb/Core/Declaration.h"
#include "lldb/Utility/Stream.h"

usingnamespacelldb_private;

void Declaration::Dump(Stream *s, bool show_fullpaths) const {}

bool Declaration::DumpStopContext(Stream *s, bool show_fullpaths) const {}

size_t Declaration::MemorySize() const {}

int Declaration::Compare(const Declaration &a, const Declaration &b) {}

bool Declaration::FileAndLineEqual(const Declaration &declaration) const {}

bool lldb_private::operator==(const Declaration &lhs, const Declaration &rhs) {}