mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Avoid leading underscore followed by cap in template identifiers
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
5ad8b9bfe2
commit
4ba872bd75
@@ -32,10 +32,10 @@ struct traits<image_retval_base<DecompositionType> >
|
||||
> ReturnType;
|
||||
};
|
||||
|
||||
template<typename _DecompositionType> struct image_retval_base
|
||||
: public ReturnByValue<image_retval_base<_DecompositionType> >
|
||||
template<typename DecompositionType_> struct image_retval_base
|
||||
: public ReturnByValue<image_retval_base<DecompositionType_> >
|
||||
{
|
||||
typedef _DecompositionType DecompositionType;
|
||||
typedef DecompositionType_ DecompositionType;
|
||||
typedef typename DecompositionType::MatrixType MatrixType;
|
||||
typedef ReturnByValue<image_retval_base> Base;
|
||||
|
||||
|
||||
@@ -34,10 +34,10 @@ struct traits<kernel_retval_base<DecompositionType> >
|
||||
> ReturnType;
|
||||
};
|
||||
|
||||
template<typename _DecompositionType> struct kernel_retval_base
|
||||
: public ReturnByValue<kernel_retval_base<_DecompositionType> >
|
||||
template<typename DecompositionType_> struct kernel_retval_base
|
||||
: public ReturnByValue<kernel_retval_base<DecompositionType_> >
|
||||
{
|
||||
typedef _DecompositionType DecompositionType;
|
||||
typedef DecompositionType_ DecompositionType;
|
||||
typedef ReturnByValue<kernel_retval_base> Base;
|
||||
|
||||
explicit kernel_retval_base(const DecompositionType& dec)
|
||||
|
||||
Reference in New Issue
Block a user