We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b5bbd2 + 6f02979 commit 0e6542dCopy full SHA for 0e6542d
lldb/source/Core/ValueObjectDynamicValue.cpp
@@ -22,10 +22,6 @@
22
#include "lldb/Utility/Status.h"
23
#include "lldb/lldb-types.h"
24
25
-#ifdef LLDB_ENABLE_SWIFT
26
-#include "Plugins/TypeSystem/Swift/SwiftASTContext.h"
27
-#endif // LLDB_ENABLE_SWIFT
28
-
29
#include <cstring>
30
namespace lldb_private {
31
class Declaration;
@@ -455,7 +451,7 @@ bool ValueObjectDynamicValue::DynamicValueTypeInfoNeedsUpdate() {
455
451
456
452
if (!scratch_ctx || !cached_ctx)
457
453
return true;
458
- return cached_ctx.GetSharedPointer().get() != scratch_ctx->get();
454
+ return (void*)cached_ctx.GetSharedPointer().get() != (void*)scratch_ctx->get();
459
#else // !LLDB_ENABLE_SWIFT
460
return false;
461
#endif // LLDB_ENABLE_SWIFT
0 commit comments