diff options
Diffstat (limited to 'lldb/source/Utility/Status.cpp')
| -rw-r--r-- | lldb/source/Utility/Status.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Utility/Status.cpp b/lldb/source/Utility/Status.cpp index e3c4284a8e8a..72fd087decc0 100644 --- a/lldb/source/Utility/Status.cpp +++ b/lldb/source/Utility/Status.cpp @@ -28,7 +28,7 @@ #ifdef _WIN32 #include <windows.h> #endif -#include <stdint.h> +#include <cstdint> namespace llvm { class raw_ostream; @@ -37,7 +37,7 @@ class raw_ostream; using namespace lldb; using namespace lldb_private; -Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {} +Status::Status() : m_string() {} Status::Status(ValueType err, ErrorType type) : m_code(err), m_type(type), m_string() {} |
