We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869c47d commit fcef1d7Copy full SHA for fcef1d7
runtime_tracing/src/capnptrace.rs
@@ -7,7 +7,7 @@ use crate::{TraceLowLevelEvent, VariableId};
7
/// The next 3 bytes are reserved/version info. In the initial version, they are zero. Non-zero values might
8
/// indicate incompatible future versions.
9
/// 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];
+const HEADER: &[u8] = &[0xC0, 0xDE, 0x72, 0xAC, 0xE2, 0x00, 0x00, 0x00];
11
12
fn conv_typekind(kind: crate::TypeKind) -> trace::TypeKind {
13
match kind {
0 commit comments