diff options
author | Johannes Schickel | 2010-03-13 21:55:49 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-03-13 21:55:49 +0000 |
commit | 40562798d6670775768224f77514ed000ff78c38 (patch) | |
tree | 4798a9207e4467c273339e8058f749304115f4db /graphics/fontman.cpp | |
parent | 958fa8d5cbe1ccffdaf6812f39238fccb67307a4 (diff) | |
download | scummvm-rg350-40562798d6670775768224f77514ed000ff78c38.tar.gz scummvm-rg350-40562798d6670775768224f77514ed000ff78c38.tar.bz2 scummvm-rg350-40562798d6670775768224f77514ed000ff78c38.zip |
Fix our DECLARE_SINGLETON macro to conform to the C++ specs.
We need to use a namespace Common { } there to make strict C++ compilers
like clang++ and comeau happy. I also added a slight comment about why
that is needed to the macro definition and a note that you need to use
it from the global namespace.
svn-id: r48254
Diffstat (limited to 'graphics/fontman.cpp')
-rw-r--r-- | graphics/fontman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/fontman.cpp b/graphics/fontman.cpp index 0fc493c402..1827cb69aa 100644 --- a/graphics/fontman.cpp +++ b/graphics/fontman.cpp @@ -25,7 +25,7 @@ #include "graphics/fontman.h" //#include "gui/consolefont.h" -DECLARE_SINGLETON(Graphics::FontManager); +DECLARE_SINGLETON(Graphics::FontManager) namespace Graphics { |