summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorArne Juul <arnej@verizonmedia.com>2020-06-29 07:59:41 +0000
committerArne Juul <arnej@verizonmedia.com>2020-06-29 07:59:41 +0000
commit24fdd53f64c84f4ed0533b4480810a8cb67b3071 (patch)
tree4cb21f88c0812890c865130a79f55317617905ba /vespalib
parente0c5ffc933056386947eb8d2a2cdff940a68dfc1 (diff)
fix bug/typo in surrogate range constant
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/text/utf8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/text/utf8.h b/vespalib/src/vespa/vespalib/text/utf8.h
index 0c75203fbbe..5a8786707e5 100644
--- a/vespalib/src/vespa/vespalib/text/utf8.h
+++ b/vespalib/src/vespa/vespalib/text/utf8.h
@@ -155,7 +155,7 @@ protected:
first_high_surrogate = 0xD800,
last_high_surrogate = 0xDBFF,
first_low_surrogate = 0xDC00,
- last_low_surrogate = 0xDCFF
+ last_low_surrogate = 0xDFFF
};
};