Skip to content

Commit 95e531f

Browse files
Fix null -> nullptr in CppInterOp.cpp
1 parent d28a736 commit 95e531f

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

0 commit comments

Comments
 (0)