cefsimple: Convert NULL to nullptr (see issue #2861)

This commit is contained in:
Marshall Greenblatt
2020-01-15 15:26:01 +01:00
parent f5eef5390a
commit b785d34d29
5 changed files with 10 additions and 10 deletions

View File

@@ -17,7 +17,7 @@
namespace {
SimpleHandler* g_instance = NULL;
SimpleHandler* g_instance = nullptr;
// Returns a data: URI with the specified contents.
std::string GetDataURI(const std::string& data, const std::string& mime_type) {
@@ -35,7 +35,7 @@ SimpleHandler::SimpleHandler(bool use_views)
}
SimpleHandler::~SimpleHandler() {
g_instance = NULL;
g_instance = nullptr;
}
// static