Skip to content

Commit b307433

Browse files
Fix null -> nullptr in CppInterOp.cpp
1 parent 2ab35af commit b307433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Interpreter/CppInterOp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ namespace Cpp {
6969
// Last assigned Autoload SearchGenerator
7070
// TODO: Test fot thread safe.
7171
class AutoLoadLibrarySearchGenerator;
72-
static AutoLoadLibrarySearchGenerator *sAutoSG = null;
72+
static AutoLoadLibrarySearchGenerator *sAutoSG = nullptr;
7373
// Flag to indicate ownership when an external interpreter instance is used.
7474
static bool OwningSInterpreter = true;
7575
static compat::Interpreter* sInterpreter = nullptr;

0 commit comments

Comments
 (0)