File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 34
34
#![ no_std]
35
35
#![ allow( clippy:: identity_op) ]
36
36
#![ allow( clippy:: missing_safety_doc) ]
37
+
38
+ // This makes clippy warn about public functions which are not #[inline].
39
+ //
40
+ // Almost all functions in this crate result in trivial or even no assembly.
41
+ // These functions should be #[inline].
42
+ //
43
+ // If you do add a function that's not supposed to be #[inline], you can add
44
+ // #[allow(clippy::missing_inline_in_public_items)] in front of it to add an
45
+ // exception to clippy's rules.
46
+ //
47
+ // This should be done in case of:
48
+ // - A function containing non-trivial logic (such as itm::write_all); or
49
+ // - A generated #[derive(Debug)] function (in which case the attribute needs
50
+ // to be applied to the struct).
37
51
#![ deny( clippy:: missing_inline_in_public_items) ]
38
52
39
53
extern crate aligned;
You can’t perform that action at this time.
0 commit comments