aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/CharacterSet.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-04-19 22:49:44 +1000
committerNeil <nyamatongwe@gmail.com>2018-04-19 22:49:44 +1000
commit2bda47cbac6778a204037890479611a1631a480f (patch)
tree2ccda71201286ccc11205bdfe19f08cba90975f3 /lexlib/CharacterSet.cxx
parent8822e0ed1db342bf1947004c660a9c8649ce35c0 (diff)
downloadscintilla-mirror-2bda47cbac6778a204037890479611a1631a480f.tar.gz
Backport: Templatize MakeUpperCase/MakeLowerCase so they work on char/int without casts.
Backport of changeset 6707:29e80e764b46.
Diffstat (limited to 'lexlib/CharacterSet.cxx')
-rw-r--r--lexlib/CharacterSet.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lexlib/CharacterSet.cxx b/lexlib/CharacterSet.cxx
index 791177fcc..2a1dabc1c 100644
--- a/lexlib/CharacterSet.cxx
+++ b/lexlib/CharacterSet.cxx
@@ -18,8 +18,8 @@ namespace Scintilla {
int CompareCaseInsensitive(const char *a, const char *b) {
while (*a && *b) {
if (*a != *b) {
- const char upperA = static_cast<char>(MakeUpperCase(*a));
- const char upperB = static_cast<char>(MakeUpperCase(*b));
+ const char upperA = MakeUpperCase(*a);
+ const char upperB = MakeUpperCase(*b);
if (upperA != upperB)
return upperA - upperB;
}
@@ -33,8 +33,8 @@ int CompareCaseInsensitive(const char *a, const char *b) {
int CompareNCaseInsensitive(const char *a, const char *b, size_t len) {
while (*a && *b && len) {
if (*a != *b) {
- const char upperA = static_cast<char>(MakeUpperCase(*a));
- const char upperB = static_cast<char>(MakeUpperCase(*b));
+ const char upperA = MakeUpperCase(*a);
+ const char upperB = MakeUpperCase(*b);
if (upperA != upperB)
return upperA - upperB;
}