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 /include/Platform.h | |
parent | 38c9ba36dfc8ee99f6f1bcdd9811ec199cb5dad1 (diff) | |
download | scintilla-mirror-e41eecbf8bcc23eba2e3a3e928b8ec2963bc71d2.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; |