forked from OSchip/llvm-project
Fix an instance of -Wmicrosoft-enum-value by making the enum unsigned
llvm-svn: 278843
This commit is contained in:
parent
d0ea59719f
commit
43231bc19b
|
@ -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,
|
||||
|
||||
|
|
Loading…
Reference in New Issue