diff options
Diffstat (limited to 'lldb/source/Utility/Baton.cpp')
| -rw-r--r-- | lldb/source/Utility/Baton.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lldb/source/Utility/Baton.cpp b/lldb/source/Utility/Baton.cpp new file mode 100644 index 00000000000..2f79eaf3de5 --- /dev/null +++ b/lldb/source/Utility/Baton.cpp @@ -0,0 +1,22 @@ +//===-- Baton.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/Baton.h" + +// C Includes +// C++ Includes +// Other libraries and framework includes +// Project includes +#include "lldb/Utility/Stream.h" + +using namespace lldb; +using namespace lldb_private; + +void UntypedBaton::GetDescription(Stream *s, + lldb::DescriptionLevel level) const {} |

