Silence a -Wsign-compare warning; NFC.

llvm-svn: 246646
This commit is contained in:
Aaron Ballman 2015-09-02 12:50:12 +00:00
parent 54d43990bb
commit 7f0c25b6c9
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ public:
if (!PendingOverrides.empty()) if (!PendingOverrides.empty())
removeOverriddenTables(); removeOverriddenTables();
if (Tables.size() > Info::MaxTables) if (Tables.size() > static_cast<unsigned>(Info::MaxTables))
condense(); condense();
internal_key_type Key = Info::GetInternalKey(EKey); internal_key_type Key = Info::GetInternalKey(EKey);