commit | ebb283e4ae23a647eaf4d6f417178e49f135f2e7 | [log] [tgz] |
---|---|---|
author | Simon Marchi <simon.marchi@efficios.com> | Wed Mar 05 16:10:10 2025 -0500 |
committer | Simon Marchi <simon.marchi@polymtl.ca> | Thu Mar 06 11:39:00 2025 -0500 |
tree | 821aa0c4496ac12b7b080b966045dfea352cd310 | |
parent | f5484e9b6cfca96874b79e91711f80efe4eed9f5 [diff] |
gdb/dwarf: remove unnecessary `this->` in read.c I like using `this->` when it's unclear that the method or field accessed is within the current class, but when accessing a private member prefixed with `m_`, it's unnecessary, as the prefix makes it clear. Remove some instances of it (some coming from the previous patch, other pre-existing) to de-clutter the code a bit. Change-Id: Ia83d0bce51d222fa3ac3d756d50170ec6ed12b94 Approved-By: Tom Tromey <tom@tromey.com>