diff options
author | Josh Blum | 2013-07-05 19:40:26 -0700 |
---|---|---|
committer | Josh Blum | 2013-07-05 19:40:26 -0700 |
commit | 66db95c9d57cd0c2a7a9fabe06f7d7d5b3fb8a45 (patch) | |
tree | 3a3fcbac80e13971e20ca4c93de51e1c693f4af4 /include/gras/block.hpp | |
parent | fc80d2c0acec4f668b58a05bd5a3a06b0a2a2280 (diff) | |
download | sandhi-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.hpp | 4 |
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); }; |