refs #356 Renamed CValueObjectStdTuple to CValueObject.

This commit is contained in:
Mathew Sutcliffe
2015-03-27 23:03:25 +00:00
parent 73f135fa5b
commit 9977d97a67
111 changed files with 330 additions and 330 deletions

View File

@@ -69,7 +69,7 @@ namespace BlackMisc
template <> class TupleConverter<T> : TupleConverterBase \
{ \
friend class T; \
template <class, class> friend class BlackMisc::CValueObjectStdTuple; \
template <class, class> friend class BlackMisc::CValueObject; \
friend class BlackMisc::Private::EncapsulationBreaker; \
static_assert(Private::HasEnabledTupleConversion<T>::value, \
"Missing BLACK_ENABLE_TUPLE_CONVERSION macro in " #T); \
@@ -121,7 +121,7 @@ namespace BlackMisc
template <class... U> class TupleConverter<T<U...>> : TupleConverterBase \
{ \
friend class T<U...>; \
template <class, class> friend class BlackMisc::CValueObjectStdTuple; \
template <class, class> friend class BlackMisc::CValueObject; \
friend class BlackMisc::Private::EncapsulationBreaker; \
static_assert(Private::HasEnabledTupleConversion<T<U...>>::value, \
"Missing BLACK_ENABLE_TUPLE_CONVERSION macro in " #T); \