Skip to content

Commit fcef1d7

Browse files
committed
refactor: rm redundant 'static
1 parent 869c47d commit fcef1d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime_tracing/src/capnptrace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use crate::{TraceLowLevelEvent, VariableId};
77
/// The next 3 bytes are reserved/version info. In the initial version, they are zero. Non-zero values might
88
/// indicate incompatible future versions.
99
/// The header is 8 bytes in size, ensuring 64-bit alignment for the rest of the file.
10-
const HEADER: &'static [u8] = &[0xC0, 0xDE, 0x72, 0xAC, 0xE2, 0x00, 0x00, 0x00];
10+
const HEADER: &[u8] = &[0xC0, 0xDE, 0x72, 0xAC, 0xE2, 0x00, 0x00, 0x00];
1111

1212
fn conv_typekind(kind: crate::TypeKind) -> trace::TypeKind {
1313
match kind {

0 commit comments

Comments
 (0)