diff options
author | nyamatongwe <unknown> | 2001-02-17 10:40:09 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-02-17 10:40:09 +0000 |
commit | e08f76c40c66a8e9190d79cf8d38173fd1fe37b7 (patch) | |
tree | 82618e57933d9200afe8206d69e3ca3aaebb8e6b /src/PropSet.cxx | |
parent | f5a6397a8db8cc22692ea8ec301da05bee2dc291 (diff) | |
download | scintilla-mirror-e08f76c40c66a8e9190d79cf8d38173fd1fe37b7.tar.gz |
Fixed some warnings from Borland.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r-- | src/PropSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx index 45419bcd1..aa7423cbc 100644 --- a/src/PropSet.cxx +++ b/src/PropSet.cxx @@ -21,7 +21,7 @@ inline char MakeUpperCase(char ch) { if (ch < 'a' || ch > 'z') return ch; else - return ch - 'a' + 'A'; + return static_cast<char>(ch - 'a' + 'A'); } int CompareCaseInsensitive(const char *a, const char *b) { |