Skip to content

Commit 55b9f04

Browse files
committed
Rename m_version to m_dwarf_version
1 parent 32d62ad commit 55b9f04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/unittests/Expression/DWARFExpressionTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

8484
private:
85-
uint16_t m_version;
85+
uint16_t m_dwarf_version;
8686
};
8787

8888
/// Mock memory implementation for testing.

0 commit comments

Comments
 (0)