diff options
author | nyamatongwe <devnull@localhost> | 2002-02-12 22:12:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-12 22:12:13 +0000 |
commit | cbf0ace15854cbdcf87bad740318df635d4baf9c (patch) | |
tree | bbbde05cf2b95b24584015ca52ddaf149e32e51d /src/LexAda.cxx | |
parent | 72149493c811006d673354cbf74ac3e8b3033487 (diff) | |
download | scintilla-mirror-cbf0ace15854cbdcf87bad740318df635d4baf9c.tar.gz |
Made LexerModule objects not be const again as that was impairing static
linking.
Diffstat (limited to 'src/LexAda.cxx')
-rw-r--r-- | src/LexAda.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexAda.cxx b/src/LexAda.cxx index 563fe2ba7..0d8fb9d5d 100644 --- a/src/LexAda.cxx +++ b/src/LexAda.cxx @@ -195,4 +195,4 @@ static void ColouriseAdaDoc(unsigned int startPos, int length, int initStyle, // } } -const LexerModule lmAda(SCLEX_ADA, ColouriseAdaDoc, "ada"); +LexerModule lmAda(SCLEX_ADA, ColouriseAdaDoc, "ada"); |