diff options
Diffstat (limited to 'include/lldb/Host/Endian.h')
-rw-r--r-- | include/lldb/Host/Endian.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/lldb/Host/Endian.h b/include/lldb/Host/Endian.h index 1ae3c40b5ca4..df0796b7baf1 100644 --- a/include/lldb/Host/Endian.h +++ b/include/lldb/Host/Endian.h @@ -12,7 +12,7 @@ #include "lldb/lldb-enumerations.h" -namespace lldb { +namespace lldb_private { namespace endian { @@ -22,7 +22,7 @@ namespace endian { uint8_t bytes[sizeof(uint32_t)]; } const endianTest = { 0x01020304 }; - inline ByteOrder InlHostByteOrder() { return (ByteOrder)endianTest.bytes[0]; } + inline lldb::ByteOrder InlHostByteOrder() { return (lldb::ByteOrder)endianTest.bytes[0]; } // ByteOrder const InlHostByteOrder = (ByteOrder)endianTest.bytes[0]; } |