Skip to content

Commit c3526ff

Browse files
committed
Don't include a ; after compile_error
1 parent bbb97cf commit c3526ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ mod binary {
220220
path
221221
);
222222
quote! {
223-
compile_error!(#err);
223+
compile_error!(#err)
224224
}
225225
}
226226
Ok(path) => {
@@ -258,7 +258,7 @@ mod binary {
258258
err.to_string().escape_default()
259259
);
260260
quote! {
261-
compile_error!(#err);
261+
compile_error!(#err)
262262
}
263263
})
264264
} else {
@@ -269,7 +269,7 @@ mod binary {
269269
path
270270
);
271271
quote! {
272-
compile_error!(#err);
272+
compile_error!(#err)
273273
}
274274
}
275275
}

0 commit comments

Comments
 (0)