Fix an instance of -Wmicrosoft-enum-value by making the enum unsigned

llvm-svn: 278843
This commit is contained in:
Reid Kleckner 2016-08-16 20:22:49 +00:00
parent d0ea59719f
commit 43231bc19b
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ private:
unsigned Partition = Unknown;
/// Special partition numbers.
enum {
enum : unsigned {
/// A partition number has not yet been assigned to this global.
Unknown = -1u,