ICU-2449 fix U_INLINE to inline in C++

X-SVN-Rev: 12660
This commit is contained in:
Markus Scherer 2003-07-23 16:55:06 +00:00
parent 09564ef233
commit 69428c2161

View file

@ -248,7 +248,7 @@ ConversionTest::TestFromUnicode() {
// output helpers ---------------------------------------------------------- ***
static U_INLINE char
static inline char
hexDigit(uint8_t digit) {
return digit<=9 ? (char)('0'+digit) : (char)('a'-10+digit);
}