mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
contrib: fix implicit function decleration in win symbol check
```bash test3.c: In function 'main': test3.c:6:21: warning: implicit declaration of function 'CoFreeUnusedLibrariesEx' [-Wimplicit-function-declaration] 6 | CoFreeUnusedLibrariesEx(0,0); ```
This commit is contained in:
parent
b9894a1308
commit
e4e9dd3a28
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ class TestSymbolChecks(unittest.TestCase):
|
|||
executable = 'test3.exe'
|
||||
with open(source, 'w', encoding="utf8") as f:
|
||||
f.write('''
|
||||
#include <windows.h>
|
||||
#include <combaseapi.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue