aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/stubs
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2013-02-07 16:47:03 +0100
committerLars Knoll <lars.knoll@digia.com>2013-02-09 10:47:04 +0100
commitab999bb39e796f171f5adeee11977c978e761c8f (patch)
tree9b8a20f87f6aa51825b75423266c54659b0aafd5 /src/3rdparty/masm/stubs
parent5165917f44b2d05fa0808759e57c6cd244162be3 (diff)
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 <lars.knoll@digia.com>
Diffstat (limited to 'src/3rdparty/masm/stubs')
-rw-r--r--src/3rdparty/masm/stubs/wtf/unicode/Unicode.h2
1 files changed, 1 insertions, 1 deletions
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 <QChar>
typedef unsigned char LChar;
-typedef uint16_t UChar;
+typedef unsigned short UChar;
namespace Unicode {
inline UChar toLower(UChar ch) {