aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCPP.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-05 00:48:09 +0000
committernyamatongwe <devnull@localhost>2000-04-05 00:48:09 +0000
commit884b65511efa0fa9c2172d2e70bc73f1fcd30e47 (patch)
tree4f65db898386e743f79b33cc46430a7bafb153f2 /src/LexCPP.cxx
parent79f23a6ce721bbf1f4ae89d0f2bc86d83fbe52b7 (diff)
downloadscintilla-mirror-884b65511efa0fa9c2172d2e70bc73f1fcd30e47.tar.gz
Changed the lexer module objects to be globally visible (by removing 'static')
so they can be explicitly referenced to force inclusion in a build.
Diffstat (limited to 'src/LexCPP.cxx')
-rw-r--r--src/LexCPP.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexCPP.cxx b/src/LexCPP.cxx
index 144648e35..b67779842 100644
--- a/src/LexCPP.cxx
+++ b/src/LexCPP.cxx
@@ -252,4 +252,4 @@ static void ColouriseCppDoc(unsigned int startPos, int length, int initStyle, Wo
}
}
-static LexerModule lmCPP(SCLEX_CPP, ColouriseCppDoc);
+LexerModule lmCPP(SCLEX_CPP, ColouriseCppDoc);