Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
674 B
C++
Raw Permalink Normal View History

2015-02-08 00:29:29 +00:00
//===- PDBSymbolUsingNamespace.cpp - ------------------- --------*- C++ -*-===//
//
// 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
2015-02-08 00:29:29 +00:00
//
//===----------------------------------------------------------------------===//
#include "llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h"
#include "llvm/DebugInfo/PDB/PDBSymDumper.h"
#include "llvm/DebugInfo/PDB/PDBSymbol.h"
#include <utility>
2015-02-08 00:29:29 +00:00
using namespace llvm;
2016-05-04 20:32:13 +00:00
using namespace llvm::pdb;
2015-02-08 00:29:29 +00:00
2015-03-01 06:51:29 +00:00
void PDBSymbolUsingNamespace::dump(PDBSymDumper &Dumper) const {
Dumper.dump(*this);
}