Fixed one buildbot-failure-causing bug...

llvm-svn: 184053
This commit is contained in:
Larisse Voufo 2013-06-16 04:34:07 +00:00
parent 070a10e63a
commit d1336faf53
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ struct ConvertToInt {
};
int *ArraySizeConversion = new int[ConvertToInt()];
#ifdef CXX1Y2
// expected-warning@-2 {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'unsigned long' is incompatible with C++98}}
// expected-warning@-2 {{implicit conversion from array size expression of type 'ConvertToInt' to integral type}} // 'unsigned long' is incompatible with C++98}}
#else
// expected-warning@-4 {{implicit conversion from array size expression of type 'ConvertToInt' to integral type 'int' is incompatible with C++98}}
#endif