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_raster_sink_f_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_raster_sink_f_python.cc')
-rw-r--r-- | gr-qtgui/python/qtgui/bindings/time_raster_sink_f_python.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-qtgui/python/qtgui/bindings/time_raster_sink_f_python.cc b/gr-qtgui/python/qtgui/bindings/time_raster_sink_f_python.cc index 662265ef3b..8c640d6101 100644 --- a/gr-qtgui/python/qtgui/bindings/time_raster_sink_f_python.cc +++ b/gr-qtgui/python/qtgui/bindings/time_raster_sink_f_python.cc @@ -54,7 +54,7 @@ void bind_time_raster_sink_f(py::module& m) py::arg("offset"), py::arg("name"), py::arg("nconnections") = 1, - py::arg("parent") = __null, + py::arg("parent") = nullptr, D(time_raster_sink_f, make)) |