Replace NULL with nullptr
This commit is contained in:
parent
5f11e15571
commit
95a1400a2a
755 changed files with 5742 additions and 5742 deletions
|
|
@ -63,7 +63,7 @@ const char **tests_get_names() {
|
|||
"gd_bytecode",
|
||||
"ordered_hash_map",
|
||||
"astar",
|
||||
NULL
|
||||
nullptr
|
||||
};
|
||||
|
||||
return test_names;
|
||||
|
|
@ -144,7 +144,7 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
|
|||
}
|
||||
|
||||
print_line("Unknown test: " + p_test);
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
#else
|
||||
|
|
@ -152,7 +152,7 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
|
|||
const char **tests_get_names() {
|
||||
|
||||
static const char *test_names[] = {
|
||||
NULL
|
||||
nullptr
|
||||
};
|
||||
|
||||
return test_names;
|
||||
|
|
@ -160,7 +160,7 @@ const char **tests_get_names() {
|
|||
|
||||
MainLoop *test_main(String p_test, const List<String> &p_args) {
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue