This patch removes the comments grouping header includes. They were added after running IWYU over the LLDB codebase. However they add little value, are often outdates and burdensome to maintain. llvm-svn: 346626
20 lines
620 B
C++
20 lines
620 B
C++
//===-- GDBRemoteSignals.cpp ------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "GDBRemoteSignals.h"
|
|
|
|
using namespace lldb_private;
|
|
|
|
GDBRemoteSignals::GDBRemoteSignals() : UnixSignals() { Reset(); }
|
|
|
|
GDBRemoteSignals::GDBRemoteSignals(const lldb::UnixSignalsSP &rhs)
|
|
: UnixSignals(*rhs) {}
|
|
|
|
void GDBRemoteSignals::Reset() { m_signals.clear(); }
|