From ee2f195dd3e40f49698ca4dc2666ec09c770e80d Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 30 May 2017 17:37:31 +0000 Subject: Vendor import of llvm trunk r304222: https://llvm.org/svn/llvm-project/llvm/trunk@304222 --- .../CodeView/ModuleDebugUnknownFragment.h | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h (limited to 'include/llvm/DebugInfo/CodeView/ModuleDebugUnknownFragment.h') 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 -- cgit v1.2.3