File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -412,16 +412,14 @@ class EntityVariable : public Materializer::Entity {
412
412
public:
413
413
EntityVariable (lldb::VariableSP &variable_sp)
414
414
: Entity(), m_variable_sp(variable_sp), m_is_reference(false ),
415
- m_is_generic ( false ), m_temporary_allocation(LLDB_INVALID_ADDRESS),
415
+ m_temporary_allocation (LLDB_INVALID_ADDRESS),
416
416
m_temporary_allocation_size(0 ) {
417
417
// Hard-coding to maximum size of a pointer since all variables are
418
418
// materialized by reference
419
419
m_size = 8 ;
420
420
m_alignment = 8 ;
421
421
m_is_reference =
422
422
m_variable_sp->GetType ()->GetForwardCompilerType ().IsReferenceType ();
423
- m_is_generic = SwiftASTContext::IsGenericType (
424
- m_variable_sp->GetType ()->GetForwardCompilerType ());
425
423
}
426
424
427
425
void Materialize (lldb::StackFrameSP &frame_sp, IRMemoryMap &map,
@@ -793,7 +791,6 @@ class EntityVariable : public Materializer::Entity {
793
791
private:
794
792
lldb::VariableSP m_variable_sp;
795
793
bool m_is_reference;
796
- bool m_is_generic;
797
794
lldb::addr_t m_temporary_allocation;
798
795
size_t m_temporary_allocation_size;
799
796
lldb::DataBufferSP m_original_data;
You can’t perform that action at this time.
0 commit comments