Skip to content

Commit 7b199bd

Browse files
authored
[lldb] Fix Symbol static_assert for 32 bit Windows (#201130)
Follow up to #200919 (comment)
1 parent 9f790fc commit 7b199bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lldb/include/lldb/Symbol/Symbol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ class Symbol : public SymbolContextScope {
364364
static_assert(
365365
sizeof(lldb_private::Symbol) == 80,
366366
"Symbol is a high volume data type, size must be increased with care");
367-
#elif __SIZEOF_POINTER__ == 4
367+
#elif __SIZEOF_POINTER__ == 4 && !defined(_WIN32)
368368
static_assert(
369369
sizeof(lldb_private::Symbol) == 52,
370370
"Symbol is a high volume data type, size must be increased with care");

0 commit comments

Comments
 (0)