diff options
author | Andrew Kurushin | 2005-01-06 19:34:07 +0000 |
---|---|---|
committer | Andrew Kurushin | 2005-01-06 19:34:07 +0000 |
commit | 3b61b06aee156c1e34b2021e287ad545b5ece41f (patch) | |
tree | 9009167851f3dc57e8c3f683d2ab45c347006f88 /common | |
parent | 00c98c519e85ee7d3f7f2a262e80a2b24b1914e0 (diff) | |
download | scummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.tar.gz scummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.tar.bz2 scummvm-rg350-3b61b06aee156c1e34b2021e287ad545b5ece41f.zip |
- remove "extern" before OSystem::makeInstance
svn-id: r16457
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 2 |
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(); /** |