Add a missing const to an accessor.

R=ivanpe@chromium.org

Review URL: https://codereview.chromium.org/1882833004 .
This commit is contained in:
Sebastien Marchand 2016-04-14 14:45:04 -04:00
parent 2e266396ee
commit d986b9d311

View File

@ -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.