Skip to content

Commit 7d2a06c

Browse files
committed
Fix warnings about member initialization order.
There's no real reason for any particular order, so we can just switch it up to prevent the warning.
1 parent 5df0e4d commit 7d2a06c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/path_converters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,8 +841,8 @@ class PathSimplifier : protected EmbeddedQueue<9>
841841

842842
bool m_moveto;
843843
bool m_after_moveto;
844-
double m_lastx, m_lasty;
845844
bool m_clipped;
845+
double m_lastx, m_lasty;
846846

847847
double m_origdx;
848848
double m_origdy;

0 commit comments

Comments
 (0)