[Driver] Remove unused declarations and "include" directives

llvm-svn: 343357
This commit is contained in:
Tatyana Krasnukha 2018-09-28 19:58:03 +00:00
parent bc52967835
commit c06db02748
2 changed files with 1 additions and 9 deletions

View File

@ -11,6 +11,7 @@
#include <algorithm>
#include <atomic>
#include <bitset>
#include <csignal>
#include <fcntl.h>
#include <limits.h>

View File

@ -11,9 +11,7 @@
#define lldb_Driver_h_
#include "Platform.h"
#include "lldb/Host/PseudoTerminal.h"
#include <bitset>
#include <set>
#include <string>
#include <vector>
@ -23,8 +21,6 @@
#include "lldb/API/SBDefines.h"
#include "lldb/API/SBError.h"
class IOChannel;
class Driver : public lldb::SBBroadcaster {
public:
typedef enum CommandPlacement {
@ -107,9 +103,6 @@ public:
OptionSet m_seen_options;
};
static lldb::SBError SetOptionValue(int option_idx, const char *option_arg,
Driver::OptionData &data);
lldb::SBDebugger &GetDebugger() { return m_debugger; }
void ResizeWindow(unsigned short col);
@ -119,8 +112,6 @@ private:
OptionData m_option_data;
void ResetOptionValues();
void ReadyForCommand();
};
#endif // lldb_Driver_h_