aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2004-12-30 14:13:14 +0000
committerMax Horn2004-12-30 14:13:14 +0000
commit60deb4200b86ba4288f3205b6cd45176a3bff254 (patch)
treeaa9c57d6c2e40b3356460edfff0d723470708c38
parent246f14bb406e7408a62e98702bedb497634ae2f1 (diff)
downloadscummvm-rg350-60deb4200b86ba4288f3205b6cd45176a3bff254.tar.gz
scummvm-rg350-60deb4200b86ba4288f3205b6cd45176a3bff254.tar.bz2
scummvm-rg350-60deb4200b86ba4288f3205b6cd45176a3bff254.zip
cleanup
svn-id: r16382
-rw-r--r--common/singleton.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/singleton.h b/common/singleton.h
index 711626781f..9a47c943b7 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -55,11 +55,6 @@ protected:
~Singleton<T>() { }
};
-//TODO: The following poses a problem when building ScummVM with plugins...
-
-//template <class T>
-//T* Singleton<T>::_singleton=0;
-
#define DECLARE_SINGLETON(T) template<> T* Common::Singleton<T>::_singleton=0
} // End of namespace Common