diff options
author | Josh Blum | 2013-04-06 18:00:21 -0700 |
---|---|---|
committer | Josh Blum | 2013-04-06 18:00:21 -0700 |
commit | 74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd (patch) | |
tree | d53c085689fffecae307108aef6d833e67cf41b9 /lib/gras_impl | |
parent | 427f6b15cd03d8a0d3881cbe65fed38cc2e5901c (diff) | |
download | sandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.tar.gz sandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.tar.bz2 sandhi-74a8855cccdd81c673d0ae3d94a74f94bbbe9bfd.zip |
gras: split register property into two calls
Diffstat (limited to 'lib/gras_impl')
-rw-r--r-- | lib/gras_impl/block_actor.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gras_impl/block_actor.hpp b/lib/gras_impl/block_actor.hpp index e620d77..8a2d5ae 100644 --- a/lib/gras_impl/block_actor.hpp +++ b/lib/gras_impl/block_actor.hpp @@ -203,7 +203,8 @@ struct BlockActor : Apology::Worker std::vector<std::vector<OutputHintMessage> > output_allocation_hints; //property stuff - std::map<std::string, PropertyRegistrySptr> prop_registry; + std::map<std::string, PropertyRegistrySptr> getter_registry; + std::map<std::string, PropertyRegistrySptr> setter_registry; BlockStats stats; }; |