From d986b9d3114890400756eca70a141306ffe33c10 Mon Sep 17 00:00:00 2001 From: Sebastien Marchand Date: Thu, 14 Apr 2016 14:45:04 -0400 Subject: Add a missing const to an accessor. R=ivanpe@chromium.org Review URL: https://codereview.chromium.org/1882833004 . --- src/google_breakpad/processor/call_stack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/google_breakpad/processor') diff --git a/src/google_breakpad/processor/call_stack.h b/src/google_breakpad/processor/call_stack.h index 7c4a06f5..c5914231 100644 --- a/src/google_breakpad/processor/call_stack.h +++ b/src/google_breakpad/processor/call_stack.h @@ -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. -- cgit v1.2.1