Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit a5e000a

Browse files
committed
[[ Cleanup ]] Remove unused variable
1 parent 384238a commit a5e000a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libgraphics/src/drawing.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1724,13 +1724,13 @@ void MCGDrawingContext::ExecutePath(VisitorT& p_visitor)
17241724

17251725
case kMCGDrawingPathOpcodeSmoothCubicTo:
17261726
{
1727-
MCGPoint t_a, t_b, t_point;
1728-
if (!Point(t_b) ||
1727+
MCGPoint t_a, t_point;
1728+
if (!Point(t_a) ||
17291729
!Point(t_point))
17301730
{
17311731
break;
17321732
}
1733-
p_visitor.PathSmoothCubicTo(t_b,
1733+
p_visitor.PathSmoothCubicTo(t_a,
17341734
t_point);
17351735
}
17361736
break;

0 commit comments

Comments
 (0)