File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/unittests/Expression Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ class MockDwarfDelegate : public DWARFExpression::Delegate {
5050 static MockDwarfDelegate Dwarf2 () { return MockDwarfDelegate (2 ); }
5151
5252 MockDwarfDelegate () : MockDwarfDelegate(DEFAULT_DWARF_VERSION) {}
53- explicit MockDwarfDelegate (uint16_t version) : m_version (version) {}
53+ explicit MockDwarfDelegate (uint16_t version) : m_dwarf_version (version) {}
5454
55- uint16_t GetVersion () const override { return m_version ; }
55+ uint16_t GetVersion () const override { return m_dwarf_version ; }
5656
5757 dw_addr_t GetBaseAddress () const override { return 0 ; }
5858
@@ -82,7 +82,7 @@ class MockDwarfDelegate : public DWARFExpression::Delegate {
8282 }
8383
8484private:
85- uint16_t m_version ;
85+ uint16_t m_dwarf_version ;
8686};
8787
8888// / Mock memory implementation for testing.
You can’t perform that action at this time.
0 commit comments