[lld][Darwin] Fix unused field warning.

This field would eventually be used.

llvm-svn: 192084
This commit is contained in:
Shankar Easwaran 2013-10-07 03:18:33 +00:00
parent 18318e32a9
commit bafdf7be83

View File

@ -67,6 +67,9 @@ public:
if (!ec)
return ec;
}
(void) (_isWholeArchive);
return llvm::error_code::success();
}