summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2018-10-09 13:00:35 -0700
committerChris Loer <chris.loer@mapbox.com>2018-10-15 13:15:46 -0700
commitfc11d2e872bfcfbd07b4f81114e0336d10650b84 (patch)
tree007b753eb8a73012d7804dc4edad61b0eebe28bc /vendor
parent6cbf150a3391c87d895222b2b1ddc2046ccc8dad (diff)
downloadqtlocation-mapboxgl-fc11d2e872bfcfbd07b4f81114e0336d10650b84.tar.gz
[core, test] Add BiDi unit test
- Port of arabic.test.js from mapbox-gl-rtl-text - Modify BiDi::getLine to remove trailing nulls in the event UBIDI_REMOVE_BIDI_CONTROLS causes the string to shorten. - Patch vendored ICU to avoid undefined undefined bit shifting behavior (triggered sanitizer failure)
Diffstat (limited to 'vendor')
-rw-r--r--vendor/icu/src/ubidiimp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/icu/src/ubidiimp.h b/vendor/icu/src/ubidiimp.h
index e070125781..16516614ab 100644
--- a/vendor/icu/src/ubidiimp.h
+++ b/vendor/icu/src/ubidiimp.h
@@ -198,8 +198,8 @@ typedef struct Run {
/* in a Run, logicalStart will get this bit set if the run level is odd */
#define INDEX_ODD_BIT (1UL<<31)
-#define MAKE_INDEX_ODD_PAIR(index, level) ((index)|((int32_t)(level)<<31))
-#define ADD_ODD_BIT_FROM_LEVEL(x, level) ((x)|=((int32_t)(level)<<31))
+#define MAKE_INDEX_ODD_PAIR(index, level) ((index)|((uint32_t)(level)<<31))
+#define ADD_ODD_BIT_FROM_LEVEL(x, level) ((x)|=((uint32_t)(level)<<31))
#define REMOVE_ODD_BIT(x) ((x)&=~INDEX_ODD_BIT)
#define GET_INDEX(x) ((x)&~INDEX_ODD_BIT)