forked from OSchip/llvm-project
Avoid using the name 'bzero' for an enumerator in global scope. <strings.h> might declare this as a function.
llvm-svn: 193066
This commit is contained in:
parent
67900f0c63
commit
1483143e7a
|
@ -17,7 +17,7 @@ enum Enum {zero, one_};
|
|||
|
||||
enum BigEnum
|
||||
{
|
||||
bzero,
|
||||
bigzero,
|
||||
big = 0xFFFFFFFFFFFFFFFFULL
|
||||
};
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ enum Enum {zero, one_};
|
|||
|
||||
enum BigEnum
|
||||
{
|
||||
bzero,
|
||||
bigzero,
|
||||
big = 0xFFFFFFFFFFFFFFFFULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue