decklink: Remove redundant const qualifiers

This commit is contained in:
Dmitry-Me
2019-02-01 16:24:37 +03:00
parent a20aeb8362
commit c9dc07db92
2 changed files with 4 additions and 4 deletions

View File

@@ -207,12 +207,12 @@ const std::vector<DeckLinkDeviceMode *>& DeckLinkDevice::GetOutputModes(void) co
return outputModes;
}
const bool DeckLinkDevice::GetSupportsExternalKeyer(void) const
bool DeckLinkDevice::GetSupportsExternalKeyer(void) const
{
return supportsExternalKeyer;
}
const bool DeckLinkDevice::GetSupportsInternalKeyer(void) const
bool DeckLinkDevice::GetSupportsInternalKeyer(void) const
{
return supportsInternalKeyer;
}