mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
Value initialize class with () not {}
Fixes problems with GCC 4.6
This commit is contained in:
@@ -104,7 +104,7 @@ void release_bmd_api_str(BMD_STR string)
|
||||
|
||||
IDeckLinkIterator *create_decklink_iterator(bool verbose)
|
||||
{
|
||||
IDeckLinkIterator *deckLinkIterator{};
|
||||
IDeckLinkIterator *deckLinkIterator = nullptr;
|
||||
#ifdef WIN32
|
||||
HRESULT result = CoCreateInstance(CLSID_CDeckLinkIterator, NULL, CLSCTX_ALL,
|
||||
IID_IDeckLinkIterator, (void **) &deckLinkIterator);
|
||||
|
||||
Reference in New Issue
Block a user