You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the latest 3th June release, you now get a compile error when including <mach/mach_time.h> from a .c file.
Steps to reproduce:
Create a *.c file and use clang to build it.
Add include #include <mach/mach_time.h>
Build the source file.
The compiler generates the following error:
C:\Dev\winobjc\include\WOCStdLib\mach/mach_time.h(36,5) : error: use of undeclared identifier 'LARGE_INTEGER'
C:\Dev\winobjc\include\WOCStdLib\mach/mach_time.h(37,30) : error: use of undeclared identifier 'count'; did you mean 'round'?
C:\Program Files (x86)\Windows Kits\10\Include\10.0.10586.0\ucrt\math.h(534,40) : note: 'round' declared here
In file included from ..\djayapp\Classes\AudioHostTimeUtils.c:19:
C:\Dev\winobjc\include\WOCStdLib\mach/mach_time.h(39,22) : error: use of undeclared identifier 'count'; did you mean 'const'?
C:\Dev\winobjc\include\WOCStdLib\mach/mach_time.h(39,22) : error: expected expression
The text was updated successfully, but these errors were encountered:
Using the latest 3th June release, you now get a compile error when including
<mach/mach_time.h>
from a .c file.Steps to reproduce:
#include <mach/mach_time.h>
The compiler generates the following error:
The text was updated successfully, but these errors were encountered: