diff options
| author | nyamatongwe <devnull@localhost> | 2010-04-30 13:35:31 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2010-04-30 13:35:31 +0000 | 
| commit | e41eecbf8bcc23eba2e3a3e928b8ec2963bc71d2 (patch) | |
| tree | b37e568d808eac2dba923b0006a3a55a46e18e3e /src/LexCaml.cxx | |
| parent | 38c9ba36dfc8ee99f6f1bcdd9811ec199cb5dad1 (diff) | |
| download | scintilla-mirror-e41eecbf8bcc23eba2e3a3e928b8ec2963bc71d2.tar.gz | |
Made compatible with clang.
Diffstat (limited to 'src/LexCaml.cxx')
| -rw-r--r-- | src/LexCaml.cxx | 10 | 
1 files changed, 4 insertions, 6 deletions
| diff --git a/src/LexCaml.cxx b/src/LexCaml.cxx index 0d1162259..ca1b65f38 100644 --- a/src/LexCaml.cxx +++ b/src/LexCaml.cxx @@ -430,13 +430,11 @@ void ColouriseCamlDoc(  static  #endif	/* BUILD_AS_EXTERNAL_LEXER */  void FoldCamlDoc( -	unsigned int startPos, int length, -	int initStyle, -	WordList *keywordlists[], -	Accessor &styler) +	unsigned int, int, +	int, +	WordList *[], +	Accessor &)  { -	// below useless evaluation(s) to supress "not used" warnings -	startPos || length || initStyle || keywordlists[0] || styler.Length();  }  static const char * const camlWordListDesc[] = { | 
