summaryrefslogtreecommitdiff
path: root/include/gras/block.hpp
diff options
context:
space:
mode:
authorJosh Blum2013-07-05 19:40:26 -0700
committerJosh Blum2013-07-05 19:40:26 -0700
commit66db95c9d57cd0c2a7a9fabe06f7d7d5b3fb8a45 (patch)
tree3a3fcbac80e13971e20ca4c93de51e1c693f4af4 /include/gras/block.hpp
parentfc80d2c0acec4f668b58a05bd5a3a06b0a2a2280 (diff)
downloadsandhi-66db95c9d57cd0c2a7a9fabe06f7d7d5b3fb8a45.tar.gz
sandhi-66db95c9d57cd0c2a7a9fabe06f7d7d5b3fb8a45.tar.bz2
sandhi-66db95c9d57cd0c2a7a9fabe06f7d7d5b3fb8a45.zip
gras: pythonic work on callable interface
Diffstat (limited to 'include/gras/block.hpp')
-rw-r--r--include/gras/block.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gras/block.hpp b/include/gras/block.hpp
index 644a73c..05809a1 100644
--- a/include/gras/block.hpp
+++ b/include/gras/block.hpp
@@ -339,8 +339,8 @@ struct GRAS_API Block : Element
/*******************************************************************
* private implementation guts for overloads and template support
******************************************************************/
- PMCC _handle_call(const std::string &, const PMCC *);
- virtual PMCC _handle_call_ts(const std::string &, const PMCC *);
+ virtual PMCC _handle_call(const std::string &, const PMCC &);
+ virtual PMCC _handle_call_ts(const std::string &, const PMCC &);
void _post_output_msg(const size_t which_output, const PMCC &msg);
void _post_input_msg(const size_t which_input, const PMCC &msg);
};