diff options
author | Neil <nyamatongwe@gmail.com> | 2017-01-22 17:34:34 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-01-22 17:34:34 +1100 |
commit | 9c124369f902a294e28a95a9af1df11add564ac1 (patch) | |
tree | d9d01753895269d35d463818b2715f555c7ba156 /src/Document.h | |
parent | 21bc1deb34f2ba2a4514d54efa3b6d2a25a83deb (diff) | |
download | scintilla-mirror-9c124369f902a294e28a95a9af1df11add564ac1.tar.gz |
Remove extraneous "void".
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index c0a0bb808..2f6531e9f 100644 --- a/src/Document.h +++ b/src/Document.h @@ -400,7 +400,7 @@ public: bool IsWordAt(int start, int end) const; bool MatchesWordOptions(bool word, bool wordStart, int pos, int length) const; - bool HasCaseFolder(void) const; + bool HasCaseFolder() const; void SetCaseFolder(CaseFolder *pcf_); long FindText(int minPos, int maxPos, const char *search, int flags, int *length); const char *SubstituteByPosition(const char *text, int *length); |