aboutsummaryrefslogtreecommitdiff
path: root/source/Host/linux/AbstractSocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Host/linux/AbstractSocket.cpp')
-rw-r--r--source/Host/linux/AbstractSocket.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/Host/linux/AbstractSocket.cpp b/source/Host/linux/AbstractSocket.cpp
deleted file mode 100644
index 2d6f6adaf1ef..000000000000
--- a/source/Host/linux/AbstractSocket.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-//===-- AbstractSocket.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/Host/linux/AbstractSocket.h"
-
-#include "llvm/ADT/StringRef.h"
-
-using namespace lldb;
-using namespace lldb_private;
-
-AbstractSocket::AbstractSocket(bool child_processes_inherit)
- : DomainSocket(ProtocolUnixAbstract, child_processes_inherit) {}
-
-size_t AbstractSocket::GetNameOffset() const { return 1; }
-
-void AbstractSocket::DeleteSocketFile(llvm::StringRef name) {}