From ab999bb39e796f171f5adeee11977c978e761c8f Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Thu, 7 Feb 2013 16:47:03 +0100 Subject: Simplify UChar stub hack Don't use uint16_t, because it's not available with all MSVC versions. Since this is just a stub it's okay to simply write out the type. Change-Id: I9220c9476a7263377b723e46e4f49892908bd53c Reviewed-by: Lars Knoll --- src/3rdparty/masm/stubs/wtf/unicode/Unicode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/3rdparty/masm/stubs') diff --git a/src/3rdparty/masm/stubs/wtf/unicode/Unicode.h b/src/3rdparty/masm/stubs/wtf/unicode/Unicode.h index d61bc64c5a..9e7427e8ac 100644 --- a/src/3rdparty/masm/stubs/wtf/unicode/Unicode.h +++ b/src/3rdparty/masm/stubs/wtf/unicode/Unicode.h @@ -44,7 +44,7 @@ #include typedef unsigned char LChar; -typedef uint16_t UChar; +typedef unsigned short UChar; namespace Unicode { inline UChar toLower(UChar ch) { -- cgit v1.2.3