Skip to repository content31 lines · 1.0 KB · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:07:49.609Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
entity_update_in_render.stderr
1error: entity `.update()` called during render mutates state in the render pass
2 --> $DIR/entity_update_in_render.rs:23:9
3 |
4LL | / self.counter.update(cx, |counter, _cx| {
5LL | | counter.value += 1;
6LL | | });
7 | |__________^
8 |
9 = note: `-D entity-update-in-render` implied by `-D warnings`
10 = help: to override `-D warnings` add `#[allow(entity_update_in_render)]`
11
12error: entity `.update()` called during render mutates state in the render pass
13 --> $DIR/entity_update_in_render.rs:37:17
14 |
15LL | let _ = self.counter.update(cx, |counter, _cx| {
16 | _________________^
17LL | | counter.value += 1;
18LL | | });
19 | |__________^
20
21error: entity `.update()` called during render mutates state in the render pass
22 --> $DIR/entity_update_in_render.rs:51:9
23 |
24LL | / self.counter.update(cx, |counter, _cx| {
25LL | | counter.value += 1;
26LL | | });
27 | |__________^
28
29error: aborting due to 3 previous errors
30
31