Skip to content

Commit cba0a8c

Browse files
committed
typo
1 parent b0cc90a commit cba0a8c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

homog2d.hpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2680,7 +2680,10 @@ class FRect_: public detail::Common<FPT>
26802680
template<typename T1,typename T2,typename T3,typename T4>
26812681
FRect_( T1 x1, T2 y1, T3 x2, T4 y2 )
26822682
{
2683-
HOMOG2D_CHECK_IS_NUMBER(T);
2683+
HOMOG2D_CHECK_IS_NUMBER(T1);
2684+
HOMOG2D_CHECK_IS_NUMBER(T2);
2685+
HOMOG2D_CHECK_IS_NUMBER(T3);
2686+
HOMOG2D_CHECK_IS_NUMBER(T4);
26842687
set( Point2d_<FPT>(x1,y1), Point2d_<FPT>(x2,y2) );
26852688
}
26862689

0 commit comments

Comments
 (0)