Skip to content

Commit 02c34e8

Browse files
committed
[lldb] fix set SBLineEntryColumn
1 parent 4136395 commit 02c34e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/API/SBLineEntry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void SBLineEntry::SetLine(uint32_t line) {
137137
void SBLineEntry::SetColumn(uint32_t column) {
138138
LLDB_INSTRUMENT_VA(this, column);
139139

140-
ref().line = column;
140+
ref().column = column;
141141
}
142142

143143
bool SBLineEntry::operator==(const SBLineEntry &rhs) const {

0 commit comments

Comments
 (0)