mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Renamed a variable to avoid a name conflict in visual studio 2005
This commit is contained in:
parent
7af1734d59
commit
3c5251bb7b
@ -227,8 +227,8 @@ namespace dlib
|
||||
typedef row_major_layout layout_type;
|
||||
};
|
||||
|
||||
template <long start, long inc_, long end>
|
||||
class matrix_range_static_exp : public matrix_exp<matrix_range_static_exp<start,inc_,end> >
|
||||
template <long start, long inc_, long end_>
|
||||
class matrix_range_static_exp : public matrix_exp<matrix_range_static_exp<start,inc_,end_> >
|
||||
{
|
||||
public:
|
||||
typedef typename matrix_traits<matrix_range_static_exp>::type type;
|
||||
@ -239,7 +239,7 @@ namespace dlib
|
||||
const static long cost = matrix_traits<matrix_range_static_exp>::cost;
|
||||
typedef typename matrix_traits<matrix_range_static_exp>::layout_type layout_type;
|
||||
|
||||
const static long inc = (start <= end)?inc_:-inc_;
|
||||
const static long inc = (start <= end_)?inc_:-inc_;
|
||||
|
||||
|
||||
matrix_range_static_exp (
|
||||
|
Loading…
Reference in New Issue
Block a user