aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kurushin2005-01-06 19:34:07 +0000
committerAndrew Kurushin2005-01-06 19:34:07 +0000
commit3b61b06aee156c1e34b2021e287ad545b5ece41f (patch)
tree9009167851f3dc57e8c3f683d2ab45c347006f88
parent00c98c519e85ee7d3f7f2a262e80a2b24b1914e0 (diff)
downloadscummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.tar.gz
scummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.tar.bz2
scummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.zip
- remove "extern" before OSystem::makeInstance
svn-id: r16457
-rw-r--r--common/system.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h
index 11831de0de..8c672e18c9 100644
--- a/common/system.h
+++ b/common/system.h
@@ -35,7 +35,7 @@ class OSystem;
* Custom object factory for OSystem.
*/
template <>
-extern OSystem *Common::Singleton<OSystem>::makeInstance();
+OSystem *Common::Singleton<OSystem>::makeInstance();
/**