aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexVHDL.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-10-17 15:17:31 +1100
committerNeil <nyamatongwe@gmail.com>2013-10-17 15:17:31 +1100
commitb1aaa4021f970951841956aa5fd19b295d1f4a65 (patch)
tree76afeb84eb8468daa9b97afb1a3349e988bc0ee6 /lexers/LexVHDL.cxx
parent73b5ebfc819a9be67ad01f8ab34be19da75fc9f9 (diff)
downloadscintilla-mirror-b1aaa4021f970951841956aa5fd19b295d1f4a65.tar.gz
Avoid namespace pollution by making lexer functions static.
Diffstat (limited to 'lexers/LexVHDL.cxx')
-rw-r--r--lexers/LexVHDL.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexVHDL.cxx b/lexers/LexVHDL.cxx
index ee9d6628f..88d8efb27 100644
--- a/lexers/LexVHDL.cxx
+++ b/lexers/LexVHDL.cxx
@@ -51,7 +51,7 @@ static inline bool IsAWordStart(const int ch) {
}
/***************************************/
-inline bool IsABlank(unsigned int ch) {
+static inline bool IsABlank(unsigned int ch) {
return (ch == ' ') || (ch == 0x09) || (ch == 0x0b) ;
}