aboutsummaryrefslogtreecommitdiff
path: root/common/singleton.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /common/singleton.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'common/singleton.h')
-rw-r--r--common/singleton.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/singleton.h b/common/singleton.h
index dec2844124..f378ec8f7b 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -34,7 +34,7 @@ class Singleton
private:
Singleton<T>(const Singleton<T>&);
Singleton<T>& operator= (const Singleton<T>&);
-
+
static T* _singleton;
/**
@@ -52,7 +52,7 @@ public:
static T* makeInstance() {
return new T();
}
-
+
public:
static T& instance() {
@@ -74,7 +74,7 @@ protected:
#else
virtual ~Singleton<T>() { }
#endif
-
+
typedef T SingletonBaseType;
};