Skip to content

Commit 47b3d84

Browse files
committed
Ignoring unused function arguments
1 parent 167de6e commit 47b3d84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ impl DrawingBackend for TextDrawingBackend {
106106
&mut self,
107107
mut upper_left: (i32, i32),
108108
mut bottom_right: (i32, i32),
109-
style: &S,
110-
fill: bool,
109+
_style: &S,
110+
_fill: bool,
111111
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
112112
upper_left.0 = upper_left.0.max(0).min(self.size.0 as i32);
113113
upper_left.1 = upper_left.1.max(0).min(self.size.1 as i32);

0 commit comments

Comments
 (0)