Silence a pedantic warning, NFC

llvm-svn: 297515
This commit is contained in:
Erik Pilkington 2017-03-10 21:38:59 +00:00
parent 711284b017
commit eea05ec3f3
1 changed files with 5 additions and 0 deletions

View File

@ -112,4 +112,9 @@ int32_t __isOSVersionAtLeast(int32_t Major, int32_t Minor, int32_t Subminor) {
return Subminor <= GlobalSubminor;
}
#else
/* Silence an empty translation unit warning. */
typedef int unused;
#endif