summaryrefslogtreecommitdiff
path: root/include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-05-30 17:37:31 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-05-30 17:37:31 +0000
commitee2f195dd3e40f49698ca4dc2666ec09c770e80d (patch)
tree66fa9a69e5789356dfe844991e64bac9222f3a35 /include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h
parentab44ce3d598882e51a25eb82eb7ae6308de85ae6 (diff)
Notes
Diffstat (limited to 'include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h')
-rw-r--r--include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h b/include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h
deleted file mode 100644
index b8c1c02e5cf1..000000000000
--- a/include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h
+++ /dev/null
@@ -1,33 +0,0 @@
-//===- ModuleDebugUnknownFragment.h -----------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_DEBUGINFO_CODEVIEW_MODULEDEBUGUNKNOWNFRAGMENT_H
-#define LLVM_DEBUGINFO_CODEVIEW_MODULEDEBUGUNKNOWNFRAGMENT_H
-
-#include "llvm/DebugInfo/CodeView/ModuleDebugFragment.h"
-#include "llvm/Support/BinaryStreamRef.h"
-
-namespace llvm {
-namespace codeview {
-
-class ModuleDebugUnknownFragmentRef final : public ModuleDebugFragmentRef {
-public:
- ModuleDebugUnknownFragmentRef(ModuleDebugFragmentKind Kind,
- BinaryStreamRef Data)
- : ModuleDebugFragmentRef(Kind), Data(Data) {}
-
- BinaryStreamRef getData() const { return Data; }
-
-private:
- BinaryStreamRef Data;
-};
-}
-}
-
-#endif