diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-13 16:27:11 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-13 16:27:11 -0400 |
commit | b8aa54c9ca45ac94faff975196047a6fc23f6245 (patch) | |
tree | 8a2839576352c20ebde8c9c713b51164206c15f3 | |
parent | f2e1c50081e66b7962c707de90378ac9209070bc (diff) |
blocks: This is C++, not Python.
-rw-r--r-- | gr-blocks/include/blocks/mute_XX.h.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/include/blocks/mute_XX.h.t b/gr-blocks/include/blocks/mute_XX.h.t index 603b07750f..2b1c8b9a4d 100644 --- a/gr-blocks/include/blocks/mute_XX.h.t +++ b/gr-blocks/include/blocks/mute_XX.h.t @@ -41,10 +41,10 @@ namespace gr { // gr::blocks::@NAME@::sptr typedef boost::shared_ptr<@NAME@> sptr; - static sptr make(bool mute=False); + static sptr make(bool mute=false); virtual bool mute() const = 0; - virtual void set_mute(bool mute=False) = 0; + virtual void set_mute(bool mute=false) = 0; }; } /* namespace blocks */ |