Raytracing: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 19:10:19 +01:00
parent aada33a574
commit 80ca13c667
10 changed files with 16 additions and 16 deletions

View File

@@ -116,7 +116,7 @@ private:
throw Py::Exception();
try {
std::string out;
const char* ppReturn=0;
const char* ppReturn=nullptr;
Gui::Document* doc = Gui::Application::Instance->activeDocument();
if (doc) {
@@ -187,7 +187,7 @@ private:
throw Py::Exception();
try {
std::string out;
const char* ppReturn=0;
const char* ppReturn=nullptr;
Gui::Document* doc = Gui::Application::Instance->activeDocument();
if (doc) {