Mark unused function unused

This commit is contained in:
Adlai Holler
2016-09-12 22:52:36 -07:00
parent 0392c3b982
commit 5b5c3d372b

View File

@@ -14,7 +14,7 @@
* Note: The actual number of threads may be lower than threadCount, if libdispatch
* decides the system can't handle it. In reality this rarely happens.
*/
static void ASDispatchApply(size_t iterationCount, dispatch_queue_t queue, NSUInteger threadCount, void(^work)(size_t i)) {
__unused static void ASDispatchApply(size_t iterationCount, dispatch_queue_t queue, NSUInteger threadCount, void(^work)(size_t i)) {
if (threadCount == 0) {
threadCount = [NSProcessInfo processInfo].activeProcessorCount * 2;
}