diff options
author | Raphael Isemann <teemperor@gmail.com> | 2018-07-24 21:09:17 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2018-07-24 21:09:17 +0000 |
commit | ea832b957889dd4bebce074f03a4a0e89c286cfb (patch) | |
tree | 7cc286be57fecae405da9e6755411e40441fb82a /lldb/source/Utility | |
parent | 8daef0751d4a881ce6d07aefb4d7120416f8f954 (diff) | |
download | bcm5719-llvm-ea832b957889dd4bebce074f03a4a0e89c286cfb.tar.gz bcm5719-llvm-ea832b957889dd4bebce074f03a4a0e89c286cfb.zip |
Remove unused History class
Summary: This class doesn't seem to be used anywhere, so we might as well remove the code.
Reviewers: labath
Reviewed By: labath
Subscribers: labath, mgorny, lldb-commits
Differential Revision: https://reviews.llvm.org/D49755
llvm-svn: 337855
Diffstat (limited to 'lldb/source/Utility')
-rw-r--r-- | lldb/source/Utility/CMakeLists.txt | 1 | ||||
-rw-r--r-- | lldb/source/Utility/History.cpp | 24 |
2 files changed, 0 insertions, 25 deletions
diff --git a/lldb/source/Utility/CMakeLists.txt b/lldb/source/Utility/CMakeLists.txt index 0cd8220523c..91f3c877373 100644 --- a/lldb/source/Utility/CMakeLists.txt +++ b/lldb/source/Utility/CMakeLists.txt @@ -53,7 +53,6 @@ add_lldb_library(lldbUtility Environment.cpp FastDemangle.cpp FileSpec.cpp - History.cpp IOObject.cpp JSON.cpp LLDBAssert.cpp diff --git a/lldb/source/Utility/History.cpp b/lldb/source/Utility/History.cpp deleted file mode 100644 index 10344b67c63..00000000000 --- a/lldb/source/Utility/History.cpp +++ /dev/null @@ -1,24 +0,0 @@ -//===-- History.cpp ---------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "lldb/Utility/History.h" - -// C Includes -#include <inttypes.h> -// C++ Includes -// Other libraries and framework includes -// Project includes -#include "lldb/Utility/Stream.h" - -using namespace lldb; -using namespace lldb_private; - -void HistorySourceUInt::DumpHistoryEvent(Stream &strm, HistoryEvent event) { - strm.Printf("%s %" PRIu64, m_name.c_str(), (uint64_t)((uintptr_t)event)); -} |