diff options
Diffstat (limited to 'lldb/source/Core/NullLog.cpp')
-rw-r--r-- | lldb/source/Core/NullLog.cpp | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/lldb/source/Core/NullLog.cpp b/lldb/source/Core/NullLog.cpp new file mode 100644 index 00000000000..01a3142de67 --- /dev/null +++ b/lldb/source/Core/NullLog.cpp @@ -0,0 +1,74 @@ +//===-- NullLog.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/Core/NullLog.h" + +using namespace lldb_private; + +NullLog::NullLog() +{ +} +NullLog::~NullLog() +{ +} + +void +NullLog::PutCString(const char *cstr) +{ +} + +void +NullLog::Printf(const char *format, ...) +{ +} + +void +NullLog::VAPrintf(const char *format, va_list args) +{ +} + +void +NullLog::LogIf(uint32_t mask, const char *fmt, ...) +{ +} + +void +NullLog::Debug(const char *fmt, ...) +{ +} + +void +NullLog::DebugVerbose(const char *fmt, ...) +{ +} + +void +NullLog::Error(const char *fmt, ...) +{ +} + +void +NullLog::FatalError(int err, const char *fmt, ...) +{ +} + +void +NullLog::Verbose(const char *fmt, ...) +{ +} + +void +NullLog::Warning(const char *fmt, ...) +{ +} + +void +NullLog::WarningVerbose(const char *fmt, ...) +{ +} |