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 /include/Platform.h | |
parent | 119e9caa6140dbe85591da91a0d668487c0f7174 (diff) | |
download | scintilla-mirror-9527e6f388b10afcde7088df567c3a907df77f8d.tar.gz |
Made compatible with clang.
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Platform.h b/include/Platform.h index b5d6d9bf8..ea9f97298 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -314,8 +314,8 @@ private: Surface(const Surface &) {} Surface &operator=(const Surface &) { return *this; } public: - Surface() {}; - virtual ~Surface() {}; + Surface() {} + virtual ~Surface() {} static Surface *Allocate(); virtual void Init(WindowID wid)=0; @@ -474,7 +474,7 @@ public: */ class DynamicLibrary { public: - virtual ~DynamicLibrary() {}; + virtual ~DynamicLibrary() {} /// @return Pointer to function "name", or NULL on failure. virtual Function FindFunction(const char *name) = 0; |