Skip to content

Commit 7383818

Browse files
Fix null -> nullptr in CppInterOp.cpp
1 parent dcebfa2 commit 7383818

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
@@ -67,7 +67,7 @@ namespace Cpp {
6767
// Last assigned Autoload SearchGenerator
6868
// TODO: Test fot thread safe.
6969
class AutoLoadLibrarySearchGenerator;
70-
static AutoLoadLibrarySearchGenerator *sAutoSG = null;
70+
static AutoLoadLibrarySearchGenerator *sAutoSG = nullptr;
7171
// Flag to indicate ownership when an external interpreter instance is used.
7272
static bool OwningSInterpreter = true;
7373
static compat::Interpreter* sInterpreter = nullptr;

0 commit comments

Comments
 (0)