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/Document.h | |
parent | 38c9ba36dfc8ee99f6f1bcdd9811ec199cb5dad1 (diff) | |
download | scintilla-mirror-e41eecbf8bcc23eba2e3a3e928b8ec2963bc71d2.tar.gz |
Made compatible with clang.
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Document.h b/src/Document.h index 55df77fcb..8bd047b23 100644 --- a/src/Document.h +++ b/src/Document.h @@ -32,10 +32,10 @@ public: Range(Position pos=0) : start(pos), end(pos) { - }; + } Range(Position start_, Position end_) : start(start_), end(end_) { - }; + } bool Valid() const { return (start != invalidPosition) && (end != invalidPosition); @@ -118,7 +118,7 @@ struct StyledText { class CaseFolder { public: virtual ~CaseFolder() { - }; + } virtual size_t Fold(char *folded, size_t sizeFolded, const char *mixed, size_t lenMixed) = 0; }; |