rename index.format(index) -> index.reformat(index) (because of conflicting member function names)
This commit is contained in:
parent
ba02601b97
commit
59a9236c04
9 changed files with 9 additions and 9 deletions
|
@ -8,7 +8,7 @@
|
||||||
namespace CNORXZ
|
namespace CNORXZ
|
||||||
{
|
{
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) CIndex::format(const Sptr<Index>& ind) const
|
decltype(auto) CIndex::reformat(const Sptr<Index>& ind) const
|
||||||
{
|
{
|
||||||
return ind;
|
return ind;
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,7 +44,7 @@ namespace CNORXZ
|
||||||
COpRoot<SizeT,CIndex> xpr(const Sptr<CIndex>& _this) const;
|
COpRoot<SizeT,CIndex> xpr(const Sptr<CIndex>& _this) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) format(const Sptr<Index>& ind) const;
|
decltype(auto) reformat(const Sptr<Index>& ind) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) slice(const Sptr<Index>& ind) const;
|
decltype(auto) slice(const Sptr<Index>& ind) const;
|
||||||
|
|
|
@ -56,7 +56,7 @@ namespace CNORXZ
|
||||||
decltype(auto) xpr(const Sptr<I>& _this) const { return THIS().xpr(_this); }
|
decltype(auto) xpr(const Sptr<I>& _this) const { return THIS().xpr(_this); }
|
||||||
|
|
||||||
//template <class Index>
|
//template <class Index>
|
||||||
//decltype(auto) format(const Sptr<Index>& ind) const { return THIS().format(ind); }
|
//decltype(auto) reformat(const Sptr<Index>& ind) const { return THIS().format(ind); }
|
||||||
|
|
||||||
//template <class Index>
|
//template <class Index>
|
||||||
//decltype(auto) slice(const Sptr<Index>& ind) const { return THIS().slice(ind); }
|
//decltype(auto) slice(const Sptr<Index>& ind) const { return THIS().slice(ind); }
|
||||||
|
|
|
@ -153,7 +153,7 @@ namespace CNORXZ
|
||||||
|
|
||||||
template <class IndexT>
|
template <class IndexT>
|
||||||
template <class I>
|
template <class I>
|
||||||
decltype(auto) PIndex<IndexT>::format(const Sptr<I>& ind) const
|
decltype(auto) PIndex<IndexT>::reformat(const Sptr<I>& ind) const
|
||||||
{
|
{
|
||||||
return ind;
|
return ind;
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ namespace CNORXZ
|
||||||
decltype(auto) xpr(const Sptr<PIndex<IndexT>>& _this) const;
|
decltype(auto) xpr(const Sptr<PIndex<IndexT>>& _this) const;
|
||||||
|
|
||||||
template <class I>
|
template <class I>
|
||||||
decltype(auto) format(const Sptr<I>& ind) const;
|
decltype(auto) reformat(const Sptr<I>& ind) const;
|
||||||
|
|
||||||
template <class I>
|
template <class I>
|
||||||
decltype(auto) slice(const Sptr<I>& ind) const;
|
decltype(auto) slice(const Sptr<I>& ind) const;
|
||||||
|
|
|
@ -143,7 +143,7 @@ namespace CNORXZ
|
||||||
|
|
||||||
template <typename Meta, SizeT S>
|
template <typename Meta, SizeT S>
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) SIndex<Meta,S>::format(const Sptr<Index>& ind) const
|
decltype(auto) SIndex<Meta,S>::reformat(const Sptr<Index>& ind) const
|
||||||
{
|
{
|
||||||
return ind;
|
return ind;
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace CNORXZ
|
||||||
decltype(auto) xpr(const Sptr<SIndex<MetaType,S>>& _this) const;
|
decltype(auto) xpr(const Sptr<SIndex<MetaType,S>>& _this) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) format(const Sptr<Index>& ind) const;
|
decltype(auto) reformat(const Sptr<Index>& ind) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) slice(const Sptr<Index>& ind) const;
|
decltype(auto) slice(const Sptr<Index>& ind) const;
|
||||||
|
|
|
@ -147,7 +147,7 @@ namespace CNORXZ
|
||||||
|
|
||||||
template <typename MetaType>
|
template <typename MetaType>
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) UIndex<MetaType>::format(const Sptr<Index>& ind) const
|
decltype(auto) UIndex<MetaType>::reformat(const Sptr<Index>& ind) const
|
||||||
{
|
{
|
||||||
return ind;
|
return ind;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace CNORXZ
|
||||||
decltype(auto) xpr(const Sptr<UIndex<MetaType>>& _this) const;
|
decltype(auto) xpr(const Sptr<UIndex<MetaType>>& _this) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) format(const Sptr<Index>& ind) const;
|
decltype(auto) reformat(const Sptr<Index>& ind) const;
|
||||||
|
|
||||||
template <class Index>
|
template <class Index>
|
||||||
decltype(auto) slice(const Sptr<Index>& ind) const;
|
decltype(auto) slice(const Sptr<Index>& ind) const;
|
||||||
|
|
Loading…
Reference in a new issue