diff options
author | Ron Economos <w6rz@comcast.net> | 2021-01-28 21:49:29 -0800 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2021-01-29 00:18:45 -0800 |
commit | 2ec31ce5759b051da6fb78de36f591687cb699c5 (patch) | |
tree | c5a6dccabf748b65f72b3f7735f9b7efb1f3209f | |
parent | 17c7fccf92a0af4429dac6af1ad08fb47eae74ee (diff) |
modtool: Remove -Wcomment warnings in python_bindings.cc template.
Occurs if -Wall is enabled in OOT.
Signed-off-by: Ron Economos <w6rz@comcast.net>
-rw-r--r-- | gr-utils/modtool/templates/gr-newmod/python/bindings/python_bindings.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-utils/modtool/templates/gr-newmod/python/bindings/python_bindings.cc b/gr-utils/modtool/templates/gr-newmod/python/bindings/python_bindings.cc index 4cf0b21781..b456290646 100644 --- a/gr-utils/modtool/templates/gr-newmod/python/bindings/python_bindings.cc +++ b/gr-utils/modtool/templates/gr-newmod/python/bindings/python_bindings.cc @@ -16,9 +16,9 @@ namespace py = pybind11; // Headers for binding functions /**************************************/ -/* The following comment block is used for -/* gr_modtool to insert function prototypes -/* Please do not delete +// The following comment block is used for +// gr_modtool to insert function prototypes +// Please do not delete /**************************************/ // BINDING_FUNCTION_PROTOTYPES( // ) END BINDING_FUNCTION_PROTOTYPES @@ -44,9 +44,9 @@ PYBIND11_MODULE(howto_python, m) py::module::import("gnuradio.gr"); /**************************************/ - /* The following comment block is used for - /* gr_modtool to insert binding function calls - /* Please do not delete + // The following comment block is used for + // gr_modtool to insert binding function calls + // Please do not delete /**************************************/ // BINDING_FUNCTION_CALLS( // ) END BINDING_FUNCTION_CALLS |