mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-16 23:20:09 +00:00

This is more concise, and matches the terminology used in other parts of the codebase more closely. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304218 91177308-0d34-0410-b5e6-96231b3b80d8
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() {}
|