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
@ -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…
Reference in New Issue
Block a user