summaryrefslogtreecommitdiff
path: root/ecs/src/system.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ecs/src/system.rs')
-rw-r--r--ecs/src/system.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecs/src/system.rs b/ecs/src/system.rs
index e273428..f266095 100644
--- a/ecs/src/system.rs
+++ b/ecs/src/system.rs
@@ -153,7 +153,7 @@ impl Debug for TypeErased
type TypeErasedRunFn = dyn Fn(&dyn Any, &World) + RefUnwindSafe + UnwindSafe;
/// A parameter to a [`System`].
-pub unsafe trait Param<'world>
+pub trait Param<'world>
{
type Input;
type Flags;