diff options
Diffstat (limited to 'source/Utility/IOObject.cpp')
-rw-r--r-- | source/Utility/IOObject.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/Utility/IOObject.cpp b/source/Utility/IOObject.cpp new file mode 100644 index 000000000000..df7929c4f911 --- /dev/null +++ b/source/Utility/IOObject.cpp @@ -0,0 +1,15 @@ +//===-- IOObject.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/IOObject.h" + +using namespace lldb_private; + +const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1; +IOObject::~IOObject() = default; |