Use C++11 nullptr in CEF helper process in the sample

This fixes its compilation under Mac and also avoids triggering the
check forbidding the use of NULL in the new code.
This commit is contained in:
Vadim Zeitlin
2023-09-06 03:50:05 +02:00
parent dfe4fc858f
commit db255db61c
+1 -1
View File
@@ -15,5 +15,5 @@ int main(int argc, char* argv[]) {
CefMainArgs main_args(argc, argv);
// Execute the secondary process.
return CefExecuteProcess(main_args, NULL, NULL);
return CefExecuteProcess(main_args, nullptr, nullptr);
}