mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 18:15:34 +00:00
Redefinition of default template argument
Sometimes it's annoying how MSVC casually allows you to break C++ standards
This commit is contained in:
parent
f77ae711e4
commit
b714e5211d
2 changed files with 2 additions and 6 deletions
|
@ -9,9 +9,7 @@
|
|||
namespace CSMWorld
|
||||
{
|
||||
struct Cell;
|
||||
template<typename T>
|
||||
struct IdAccessor;
|
||||
template<typename T, typename AT = IdAccessor<T> >
|
||||
template<typename T, typename AT>
|
||||
class IdCollection;
|
||||
|
||||
/// \brief Wrapper for Pathgrid record
|
||||
|
|
|
@ -9,9 +9,7 @@ namespace ESM
|
|||
namespace CSMWorld
|
||||
{
|
||||
struct Cell;
|
||||
template<typename T>
|
||||
struct IdAccessor;
|
||||
template<typename T, typename AT = IdAccessor<T> >
|
||||
template<typename T, typename AT>
|
||||
class IdCollection;
|
||||
|
||||
/// \brief Single type collection of top level records that are associated with cells
|
||||
|
|
Loading…
Reference in a new issue