mirror of https://github.com/mosra/magnum.git
Browse Source
I'm not exactly sure where was the actual problem, but it seems to be related to definition of templated function with static member variables in header file in combination with dynamic libraries, causing multiple definitions of a symbol which did or did not lead to compile error and/or things breaking in horribly unpredictable way. Previously it was done via (undocumented) macros, depending on include order, which is great until it breaks horribly after random unrelated changes. Currently it is done via black template magic and I'm still afraid of including it in the public documentation. There should be no visible change to the end user except for possibly one less randomly weird bug (#79? couldn't reproduce). ... well, looking at the diff, the solution is still an ugly **********, but at least it seems to work.pull/94/head
5 changed files with 100 additions and 45 deletions
@ -0,0 +1,46 @@
|
||||
/*
|
||||
This file is part of Magnum. |
||||
|
||||
Copyright © 2010, 2011, 2012, 2013, 2014, 2015 |
||||
Vladimír Vondruš <mosra@centrum.cz> |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a |
||||
copy of this software and associated documentation files (the "Software"), |
||||
to deal in the Software without restriction, including without limitation |
||||
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
||||
and/or sell copies of the Software, and to permit persons to whom the |
||||
Software is furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included |
||||
in all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
||||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
||||
DEALINGS IN THE SOFTWARE. |
||||
*/ |
||||
|
||||
#include "ResourceManager.h" |
||||
|
||||
/*
|
||||
File-local definition of ResourceManager instance holder for use in cases |
||||
where the class is used across library boundaries, in which case additional |
||||
care must be done to ensure a single static instance. |
||||
|
||||
Usage: typedef the resource manager with Implementation::ResourceManagerLocalInstance |
||||
as a first type and then include this file in a _single_ *.cpp file. |
||||
|
||||
This symbol is always exported. |
||||
*/ |
||||
|
||||
namespace Magnum { namespace Implementation { |
||||
|
||||
template<class ...Types> CORRADE_VISIBILITY_EXPORT ResourceManager<Types...>*& ResourceManagerLocalInstanceImplementation<Types...>::internalInstance() { |
||||
static ResourceManager<Types...>* _instance(nullptr); |
||||
return _instance; |
||||
} |
||||
|
||||
}} |
||||
Loading…
Reference in new issue