1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-05 02:54:10 +02:00

wrap sendprop definition in an Rc

This commit is contained in:
Robin Appelman 2019-08-27 00:48:43 +02:00
commit a7702856d0
3 changed files with 22 additions and 21 deletions

View file

@ -488,7 +488,7 @@ impl From<Vec<SendPropValue>> for SendPropValue {
#[derive(Debug, Clone)]
pub struct SendProp {
pub definition: SendPropDefinition,
pub definition: Rc<SendPropDefinition>,
pub value: SendPropValue,
}