Issue 3223: trying again repair for the failing wasm32 build
Removed `mut` modifier completely.
This commit is contained in:
@@ -129,7 +129,7 @@ impl WasmQueryState {
|
|||||||
let mut error = None;
|
let mut error = None;
|
||||||
let mut to_drop = false;
|
let mut to_drop = false;
|
||||||
match &mut self.inner {
|
match &mut self.inner {
|
||||||
Some(mut inner) => inner.with_query_state_mut(|query_state| match query_state.next() {
|
Some(inner) => inner.with_query_state_mut(|query_state| match query_state.next() {
|
||||||
Some(Ok(leaf_answer)) => {
|
Some(Ok(leaf_answer)) => {
|
||||||
js_sys::Reflect::set(&ret, &"value".into(), &leaf_answer.into()).unwrap();
|
js_sys::Reflect::set(&ret, &"value".into(), &leaf_answer.into()).unwrap();
|
||||||
js_sys::Reflect::set(&ret, &"done".into(), &false.into()).unwrap();
|
js_sys::Reflect::set(&ret, &"done".into(), &false.into()).unwrap();
|
||||||
|
|||||||
Reference in New Issue
Block a user