diff options
author | Ryan Volz <ryan.volz@gmail.com> | 2020-10-01 16:48:28 -0400 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2020-10-05 10:37:33 +0200 |
commit | 811db511d63362b3d9cf689b8f378900ced7910c (patch) | |
tree | fac29c6ee88166b7bd902e9b45ed279d950a87af /gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc | |
parent | 65ed45b13e131e4e552f386210356072f3523d36 (diff) |
qtgui: python: bindings: Use nullptr instead of nonstandard __null.
This fixes compilation with MSVC.
Diffstat (limited to 'gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc')
-rw-r--r-- | gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc b/gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc index 29ebd25f9f..f28614f920 100644 --- a/gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc +++ b/gr-qtgui/python/qtgui/bindings/time_sink_c_python.cc @@ -53,7 +53,7 @@ void bind_time_sink_c(py::module& m) py::arg("samp_rate"), py::arg("name"), py::arg("nconnections") = 1, - py::arg("parent") = __null, + py::arg("parent") = nullptr, D(time_sink_c, make)) |