Skip to content

Commit

Permalink
Fix null -> nullptr in CppInterOp.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-penev authored Dec 18, 2024
1 parent dcebfa2 commit 7383818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Interpreter/CppInterOp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace Cpp {
// Last assigned Autoload SearchGenerator
// TODO: Test fot thread safe.
class AutoLoadLibrarySearchGenerator;
static AutoLoadLibrarySearchGenerator *sAutoSG = null;
static AutoLoadLibrarySearchGenerator *sAutoSG = nullptr;
// Flag to indicate ownership when an external interpreter instance is used.
static bool OwningSInterpreter = true;
static compat::Interpreter* sInterpreter = nullptr;
Expand Down

0 comments on commit 7383818

Please sign in to comment.