aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/processor
diff options
context:
space:
mode:
authorSebastien Marchand <sebmarchand@chromium.org>2016-04-14 14:45:04 -0400
committerSebastien Marchand <sebmarchand@chromium.org>2016-04-14 14:45:04 -0400
commitd986b9d3114890400756eca70a141306ffe33c10 (patch)
treed4bb120a66e61c84eeaf448601c305d55e0ed923 /src/google_breakpad/processor
parentFix DWARF handling of inlined functions in namespaces (diff)
downloadbreakpad-d986b9d3114890400756eca70a141306ffe33c10.tar.xz
Add a missing const to an accessor.
R=ivanpe@chromium.org Review URL: https://codereview.chromium.org/1882833004 .
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r--src/google_breakpad/processor/call_stack.h2
1 files changed, 1 insertions, 1 deletions
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.