You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Replace NULL with nullptr
This commit is contained in:
@@ -91,7 +91,7 @@ void RWLockPosix::make_default() {
|
||||
RWLockPosix::RWLockPosix() {
|
||||
|
||||
//rwlock=PTHREAD_RWLOCK_INITIALIZER; fails on OSX
|
||||
pthread_rwlock_init(&rwlock, NULL);
|
||||
pthread_rwlock_init(&rwlock, nullptr);
|
||||
}
|
||||
|
||||
RWLockPosix::~RWLockPosix() {
|
||||
|
||||
Reference in New Issue
Block a user