From 5e32c5ea448563be91017d71bab060c8a6bd90fe Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 24 Jan 2020 15:10:49 -0500 Subject: s/PinnedBuf/ZeroCopyBuf (#3782) --- cli/ops/compiler.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/ops/compiler.rs') diff --git a/cli/ops/compiler.rs b/cli/ops/compiler.rs index e515081df..2d0ffe1f3 100644 --- a/cli/ops/compiler.rs +++ b/cli/ops/compiler.rs @@ -30,7 +30,7 @@ struct CacheArgs { fn op_cache( state: &ThreadSafeState, args: Value, - _zero_copy: Option, + _zero_copy: Option, ) -> Result { let args: CacheArgs = serde_json::from_value(args)?; @@ -55,7 +55,7 @@ struct SpecifiersReferrerArgs { fn op_resolve_modules( state: &ThreadSafeState, args: Value, - _data: Option, + _data: Option, ) -> Result { let args: SpecifiersReferrerArgs = serde_json::from_value(args)?; @@ -86,7 +86,7 @@ fn op_resolve_modules( fn op_fetch_source_files( state: &ThreadSafeState, args: Value, - _data: Option, + _data: Option, ) -> Result { let args: SpecifiersReferrerArgs = serde_json::from_value(args)?; -- cgit v1.2.3