to handle constant expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191336
91177308-0d34-0410-b5e6-
96231b3b80d8
// In C++1y, we need to look ahead a few characters to see if this is a
// valid suffix for a string literal or a numeric literal (this could be
// the 'operator""if' defining a numeric literal operator).
- const int MaxStandardSuffixLength = 3;
+ const unsigned MaxStandardSuffixLength = 3;
char Buffer[MaxStandardSuffixLength] = { C };
unsigned Consumed = Size;
unsigned Chars = 1;