File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,17 @@ incremental = false
3535[features ]
3636default = [" std" ]
3737benchmark = [" brotli-decompressor/benchmark" ]
38+ billing = []
3839disable-timer = [" brotli-decompressor/disable-timer" ]
40+ disallow_large_window_size = []
3941external-literal-probability = []
4042ffi-api = [" brotli-decompressor/ffi-api" ]
43+ float64 = []
44+ floating_point_context_mixing = []
45+ no-stdlib-ffi-binding = []
4146pass-through-ffi-panics = []
4247seccomp = [" brotli-decompressor/seccomp" ]
48+ simd = []
4349std = [" alloc-stdlib" , " brotli-decompressor/std" ]
4450validation = [" sha2" ]
4551vector_scratch_space = []
46- simd = []
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ fn normalize_weights(weights: &mut [i32; 2]) {
8787}
8888
8989#[ allow( dead_code) ]
90- #[ cfg( features = "floating_point_context_mixing" ) ]
90+ #[ cfg( feature = "floating_point_context_mixing" ) ]
9191fn compute_new_weight (
9292 probs : [ Prob ; 2 ] ,
9393 weighted_prob : Prob ,
@@ -115,7 +115,7 @@ fn compute_new_weight(
115115}
116116
117117#[ allow( dead_code) ]
118- #[ cfg( not( features = "floating_point_context_mixing" ) ) ]
118+ #[ cfg( not( feature = "floating_point_context_mixing" ) ) ]
119119#[ inline( always) ]
120120fn compute_new_weight (
121121 probs : [ Prob ; 2 ] ,
You can’t perform that action at this time.
0 commit comments