diff options
author | nyamatongwe <unknown> | 2010-04-30 13:35:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-04-30 13:35:31 +0000 |
commit | 9527e6f388b10afcde7088df567c3a907df77f8d (patch) | |
tree | b37e568d808eac2dba923b0006a3a55a46e18e3e /src/Document.h | |
parent | 119e9caa6140dbe85591da91a0d668487c0f7174 (diff) | |
download | scintilla-mirror-9527e6f388b10afcde7088df567c3a907df77f8d.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; }; |