mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
f028d10a98
This is more concise, and matches the terminology used in other parts of the codebase more closely. llvm-svn: 304218
17 lines
510 B
C++
17 lines
510 B
C++
//===- DebugSubsection.cpp -----------------------------------*- C++-*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/DebugInfo/CodeView/DebugSubsection.h"
|
|
|
|
using namespace llvm::codeview;
|
|
|
|
DebugSubsectionRef::~DebugSubsectionRef() {}
|
|
|
|
DebugSubsection::~DebugSubsection() {}
|