#include "lldb/lldb-defines.h"
#include "lldb/lldb-enumerations.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/FormatVariadic.h"
#include <cstdarg>
#include <cstdint>
#include <string>
#include <system_error>
#include <type_traits>
Go to the source code of this file.
|
namespace | llvm |
|
namespace | lldb_private |
| A class that represents a running process on the host machine.
|
|
◆ LLDB_ERRORF
#define LLDB_ERRORF |
( |
|
status, |
|
|
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do { \
if (status) { \
(status)->SetErrorStringWithFormat((fmt), __VA_ARGS__); \
} \
} while (0);
Definition at line 205 of file Status.h.