Merge pull request #1633 from Dmitry-Me/removeRedundantQualifier

decklink: Remove redundant const qualifiers
master
Colin Edwards 2019-02-01 12:24:36 -06:00 committed by GitHub
commit 734349638f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}

View File

@ -39,8 +39,8 @@ public:
const std::string& GetHash(void) const;
const std::vector<DeckLinkDeviceMode *>& GetInputModes(void) const;
const std::vector<DeckLinkDeviceMode *>& GetOutputModes(void) const;
const bool GetSupportsExternalKeyer(void) const;
const bool GetSupportsInternalKeyer(void) const;
bool GetSupportsExternalKeyer(void) const;
bool GetSupportsInternalKeyer(void) const;
int GetKeyerMode(void);
void SetKeyerMode(int newKeyerMode);
const std::string& GetName(void) const;