aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-22 12:40:34 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-22 12:40:34 -0800
commit37bdb2009265b401aa1af64336d122949ff5d22b (patch)
treef073a27d1f23e067c7e9f6ecfd3f514483f3b128 /parser.h
parente31431140a7da60cdebdadbc36ad9bd75e504fea (diff)
Make event_block_t.event not a reference
Stylistic tweaks
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.h b/parser.h
index b956be4d..e36a1a92 100644
--- a/parser.h
+++ b/parser.h
@@ -158,7 +158,7 @@ struct if_block_t : public block_t
struct event_block_t : public block_t
{
- event_t const &event;
+ event_t const event;
event_block_t(const event_t &evt);
};