mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
cefsimple: Convert NULL to nullptr (see issue #2861)
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user