refs #403 Add Policy::MetaType::None for base class templates

This commit is contained in:
Roland Winklmeier
2015-04-21 00:05:39 +02:00
parent e5e8cf00ef
commit 38b00e06b3
18 changed files with 116 additions and 2 deletions

View File

@@ -49,7 +49,9 @@ namespace BlackMisc
//! \private
template <template <class> class C, class T, class CIt>
struct CValueObjectPolicy<CContainerBase<C, T, CIt>> : public CValueObjectLegacy
{};
{
using MetaType = Policy::MetaType::None;
};
/*!
* \brief Base class for CCollection and CSequence adding mutating operations and CValueObject facility on top of CRangeBase.