summaryrefslogtreecommitdiff
path: root/include/lldb/Core/Value.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/Value.h')
-rw-r--r--include/lldb/Core/Value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lldb/Core/Value.h b/include/lldb/Core/Value.h
index 5461ca73d082..c7d44322333c 100644
--- a/include/lldb/Core/Value.h
+++ b/include/lldb/Core/Value.h
@@ -114,7 +114,7 @@ public:
#if defined (ENABLE_128_BIT_SUPPORT)
else if (length >= 16) scalar = *(const __uint128_t *)bytes;
#else
- else if (length >= 16) scalar = *(const __uint64_t *)bytes;
+ else if (length >= 16) scalar = *(const uint64_t *)bytes;
#endif
}
return scalar;