summaryrefslogtreecommitdiff
path: root/base/trace_event/memory_usage_estimator.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/trace_event/memory_usage_estimator.h')
-rw-r--r--base/trace_event/memory_usage_estimator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/trace_event/memory_usage_estimator.h b/base/trace_event/memory_usage_estimator.h
index db4ea6956c..6f02bb93bb 100644
--- a/base/trace_event/memory_usage_estimator.h
+++ b/base/trace_event/memory_usage_estimator.h
@@ -208,7 +208,7 @@ struct EMUCaller<
T,
typename std::enable_if<!HasEMU<T>::value &&
is_trivially_destructible<T>::value>::type> {
- static size_t Call(const T&) { return 0; }
+ static size_t Call(const T& value) { return 0; }
};
// Returns reference to the underlying container of a container adapter.