Skip to content

Commit a6e373e

Browse files
Change the baseinterface typename
1 parent 2647ed8 commit a6e373e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HdmiCecSink/HdmiCecSink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ namespace WPEFramework {
603603
_parent.onPowerModeChanged(currentState, newState);
604604
}
605605

606-
template <typename INTERFACE>
606+
template <typename T>
607607
T* baseInterface()
608608
{
609609
static_assert(std::is_base_of<T, Notification>(), "base type mismatch");

HdmiCecSource/HdmiCecSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ namespace WPEFramework {
247247
_parent.onPowerModeChanged(currentState, newState);
248248
}
249249

250-
template <typename INTERFACE>
250+
template <typename T>
251251
T* baseInterface()
252252
{
253253
static_assert(std::is_base_of<T, Notification>(), "base type mismatch");

0 commit comments

Comments
 (0)