Skip to content

Commit

Permalink
Fix a feature combo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jan 16, 2025
1 parent 63ef6c6 commit d17652f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wasmtime/src/profiling_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ cfg_if::cfg_if! {
pub trait ProfilingAgent: Send + Sync + 'static {
fn register_function(&self, name: &str, code: &[u8]);

#[cfg(feature = "pulley")]
#[cfg(all(feature = "runtime", feature = "pulley"))]
fn register_interpreter(&self, interp: &crate::vm::Interpreter) {
let _ = interp;
}
Expand Down

0 comments on commit d17652f

Please sign in to comment.