From 9527e6f388b10afcde7088df567c3a907df77f8d Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Fri, 30 Apr 2010 13:35:31 +0000 Subject: Made compatible with clang. --- include/Platform.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/Platform.h') 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; -- cgit v1.2.3