diff options
author | nyamatongwe <devnull@localhost> | 2001-04-04 03:39:08 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-04-04 03:39:08 +0000 |
commit | 55a8331df687b8a0bb2f7b8c814f24df1ad8b198 (patch) | |
tree | d7d7e854f1659b0ca6f28f217edcddefda42f04d /src/PropSet.cxx | |
parent | a1e68d0148853c74ec7f8cb0b10a5f810a0262b5 (diff) | |
download | scintilla-mirror-55a8331df687b8a0bb2f7b8c814f24df1ad8b198.tar.gz |
Avoid compiler and BoundsChecker warnings.
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 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 |