mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-26 09:14:58 +01:00
Add a missing const to an accessor.
R=ivanpe@chromium.org Review URL: https://codereview.chromium.org/1882833004 .
This commit is contained in:
parent
2e266396ee
commit
d986b9d311
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ class CallStack {
|
|||
// Set the TID associated with this call stack.
|
||||
void set_tid(uint32_t tid) { tid_ = tid; }
|
||||
|
||||
uint32_t tid() { return tid_; }
|
||||
uint32_t tid() const { return tid_; }
|
||||
|
||||
private:
|
||||
// Stackwalker is responsible for building the frames_ vector.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue