Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70d58cb + f0e7409 commit 00833b9Copy full SHA for 00833b9
CoreFoundation/Base.subproj/CFInternal.h
@@ -176,7 +176,7 @@ CF_PRIVATE CFIndex __CFActiveProcessorCount();
176
#define __CFAssert(cond, prio, desc, ...) \
177
do { \
178
if (!(cond)) { \
179
- CFLog(prio, CFSTR(desc), __VA_ARGS__); \
+ CFLog(prio, CFSTR(desc), ##__VA_ARGS__); \
180
HALT; \
181
} \
182
} while (0)
@@ -187,7 +187,7 @@ CF_PRIVATE CFIndex __CFActiveProcessorCount();
187
#endif
188
189
#define CFAssert(condition, priority, description, ...) \
190
- __CFAssert((condition), (priority), description, __VA_ARGS__)
+ __CFAssert((condition), (priority), description, ##__VA_ARGS__)
191
192
#define __kCFLogAssertion 3
193
0 commit comments