aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-04-04 03:39:08 +0000
committernyamatongwe <unknown>2001-04-04 03:39:08 +0000
commitb338ed2a95f184263c1e1c7782ba3706fa05858c (patch)
treed7d7e854f1659b0ca6f28f217edcddefda42f04d /src/PropSet.cxx
parent4a76af5c71efaf28a34e9399d985d74d23649ac2 (diff)
downloadscintilla-mirror-b338ed2a95f184263c1e1c7782ba3706fa05858c.tar.gz
Avoid compiler and BoundsChecker warnings.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r--src/PropSet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx
index 573991870..5f4e20a1c 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -19,7 +19,7 @@
// The comparison and case changing functions here assume ASCII
// or extended ASCII such as the normal Windows code page.
-inline char MakeUpperCase(char ch) {
+static inline char MakeUpperCase(char ch) {
if (ch < 'a' || ch > 'z')
return ch;
else