Add SetValue for unsigned long for uint64_t
am: b0f80eb4a7
Change-Id: Ia95df0946a40f0383c32f94006576220205e613d
This commit is contained in:
@@ -48,6 +48,13 @@ void SetValue(const unsigned int& value,
|
|||||||
attribute->int64Value = value;
|
attribute->int64Value = value;
|
||||||
}
|
}
|
||||||
template<>
|
template<>
|
||||||
|
__attribute__((unused))
|
||||||
|
void SetValue(const unsigned long& value,
|
||||||
|
DrmMetricGroup::Attribute* attribute) {
|
||||||
|
attribute->int64Value = value;
|
||||||
|
}
|
||||||
|
template<>
|
||||||
|
__attribute__((unused))
|
||||||
void SetValue(const unsigned long long& value,
|
void SetValue(const unsigned long long& value,
|
||||||
DrmMetricGroup::Attribute* attribute) {
|
DrmMetricGroup::Attribute* attribute) {
|
||||||
attribute->int64Value = value;
|
attribute->int64Value = value;
|
||||||
|
|||||||
Reference in New Issue
Block a user