Commit bc4b701a authored by Stephen Chen's avatar Stephen Chen Committed by Peter Griess

fix broken clang build: add missing template keyword

Summary: Broken in D1054291

Test Plan: build adpublisher in clang mode which was one of the two projects that failed to build.

Reviewed By: bmaurer@fb.com

FB internal diff: D1067652

@override-unit-failures
parent 586dd85c
......@@ -202,7 +202,7 @@ std::string TimeseriesHistogram<T, TT, C>::getString(int level) const {
const ContainerType& cont = buckets_.getByIndex(i);
toAppend(buckets_.getBucketMin(i),
":", cont.count(level),
":", cont.avg<ValueType>(level), &result);
":", cont.template avg<ValueType>(level), &result);
}
return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment